Remove warnings

This commit is contained in:
Nikolay Krasko
2013-01-21 18:48:36 +04:00
parent 731f2d51f6
commit a6c4a36ce5
@@ -29,8 +29,9 @@ public class GeneratedClassLoader extends URLClassLoader {
this.state = state;
}
@NotNull
@Override
protected Class<?> findClass(String name) throws ClassNotFoundException {
protected Class<?> findClass(@NotNull String name) throws ClassNotFoundException {
String file = name.replace('.', '/') + ".class";
if (state.files().contains(file)) {
byte[] bytes = state.asBytes(file);