Created
February 21, 2014 13:21
-
-
Save jerrinot/9134097 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Deprecated | |
public class HelloWorld implements Serializable { | |
@GenerateMicroBenchmark | |
public boolean instanceOfTest() { | |
return this instanceof Serializable; | |
} | |
@GenerateMicroBenchmark | |
public boolean annotationTest() { | |
return this.getClass().isAnnotationPresent(Deprecated.class); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment