We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c270ef commit 6e7625cCopy full SHA for 6e7625c
1 file changed
src/main/java/dinistiq/SimpleClassResolver.java
@@ -18,8 +18,6 @@
18
*/
19
package dinistiq;
20
21
-import dinistiq.web.DinistiqContextLoaderListener;
22
-import dinistiq.web.RegisterableServlet;
23
import java.io.File;
24
import java.io.IOException;
25
import java.lang.annotation.Annotation;
@@ -64,8 +62,8 @@ public class SimpleClassResolver implements ClassResolver {
64
62
* and corresponding useless error entries in the log
65
63
66
static {
67
- CLASSES_TO_IGNORE.add(DinistiqContextLoaderListener.class.getName());
68
- CLASSES_TO_IGNORE.add(RegisterableServlet.class.getName());
+ CLASSES_TO_IGNORE.add("dinistiq.web.DinistiqContextLoaderListener");
+ CLASSES_TO_IGNORE.add("dinistiq.web.RegisterableServlet");
69
}
70
71
0 commit comments