Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes: 17543ecf SPIGOT-5035: Error Using Virtual Merchant GUI 0fc6922b SPIGOT-5028: Villager#setVillagerExperience() doesn't work bdbdbe44 SPIGOT-5024: Fox error - Unknown target reason
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Aikar <aikar@aikar.co>
 | 
						|
Date: Sun, 24 Mar 2019 18:44:26 -0400
 | 
						|
Subject: [PATCH] Ignore package-private methods for nullability annotations
 | 
						|
 | 
						|
This isn't API
 | 
						|
 | 
						|
diff --git a/src/test/java/org/bukkit/AnnotationTest.java b/src/test/java/org/bukkit/AnnotationTest.java
 | 
						|
index 328a5a163..af2abd47f 100644
 | 
						|
--- a/src/test/java/org/bukkit/AnnotationTest.java
 | 
						|
+++ b/src/test/java/org/bukkit/AnnotationTest.java
 | 
						|
@@ -0,0 +0,0 @@ public class AnnotationTest {
 | 
						|
 
 | 
						|
     private static boolean isMethodIncluded(@NotNull ClassNode clazz, @NotNull MethodNode method, @NotNull Map<String, ClassNode> allClasses) {
 | 
						|
         // Exclude private, synthetic and deprecated methods
 | 
						|
-        if ((method.access & (Opcodes.ACC_PRIVATE | Opcodes.ACC_SYNTHETIC | Opcodes.ACC_DEPRECATED)) != 0) {
 | 
						|
+        if ((method.access & (Opcodes.ACC_PRIVATE | Opcodes.ACC_SYNTHETIC | Opcodes.ACC_DEPRECATED)) != 0 || (method.access & (Opcodes.ACC_PRIVATE | Opcodes.ACC_PROTECTED | Opcodes.ACC_PUBLIC)) == 0) { // Paper - ignore package-private
 | 
						|
             return false;
 | 
						|
         }
 | 
						|
 
 | 
						|
--
 |