Actually fix the issue
This commit is contained in:
		
							parent
							
								
									232118e69e
								
							
						
					
					
						commit
						702e4ea80b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -319,7 +319,7 @@ public class AccessWidener { | |||
| 		} | ||||
| 
 | ||||
| 		// Skip interface and static methods | ||||
| 		if ((ownerAccess & (Opcodes.ACC_INTERFACE | Opcodes.ACC_STATIC)) != 0) { | ||||
| 		if ((ownerAccess & Opcodes.ACC_INTERFACE) != 0 || (access & Opcodes.ACC_STATIC) != 0) { | ||||
| 			return access; | ||||
| 		} | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue