Move annotations to correct places

This commit is contained in:
Mark Vainomaa 2017-03-21 15:15:23 +02:00
parent 2beeb1c57b
commit a5131f534b
3 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,7 @@ import java.util.stream.Stream;
*
* @author Mark
*/
@Deprecated
public class Reflect {
/**

View File

@ -6,6 +6,7 @@ import org.jetbrains.annotations.Nullable;
import java.util.Arrays;
import java.util.stream.Stream;
@Deprecated
public class Validate {
/* Code got from Google Guava */
private static <T> T checkNotNull(T reference, @Nullable Object errorMessage) {

View File

@ -0,0 +1,5 @@
/**
* Reflection utilities.
* @deprecated My ShurikenReflect is better
*/
package eu.mikroskeem.utils.reflect;