11 lines
		
	
	
	
		
			343 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			343 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.obfuscate;
 | |
| 
 | |
| import java.lang.annotation.ElementType;
 | |
| import java.lang.annotation.Retention;
 | |
| import java.lang.annotation.RetentionPolicy;
 | |
| import javax.annotation.meta.TypeQualifierDefault;
 | |
| 
 | |
| @TypeQualifierDefault({ElementType.TYPE, ElementType.METHOD})
 | |
| @Retention(RetentionPolicy.CLASS)
 | |
| public @interface DontObfuscate {
 | |
| }
 |