Remove unwanted @Nullable annotations

See gh-15876
This commit is contained in:
wonwoo
2019-02-08 22:29:53 +09:00
committed by Andy Wilkinson
parent 6fe9e3a0e1
commit 2855321074
7 changed files with 7 additions and 21 deletions

View File

@@ -42,7 +42,6 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.GenericApplicationListener;
import org.springframework.core.ResolvableType;
import org.springframework.lang.Nullable;
import org.springframework.util.StringUtils;
/**
@@ -185,7 +184,7 @@ public class LocalDevToolsAutoConfiguration {
}
@Override
public boolean supportsSourceType(@Nullable Class<?> sourceType) {
public boolean supportsSourceType(Class<?> sourceType) {
return true;
}