Skip to content

Commit f552ecf

Browse files
committed
Tidy removing debug
1 parent d6e42f2 commit f552ecf

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/main/java/io/dinject/javalin/generator/ControllerReader.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ <A extends Annotation> A findMethodAnnotation(Class<A> type, ExecutableElement e
119119
if (matchMethod(interfaceMethod, element)) {
120120
final A annotation = interfaceMethod.getAnnotation(type);
121121
if (annotation != null) {
122-
ctx.logDebug("found interface method annotation : " + annotation + " 2:" + interfaceMethod);
123122
return annotation;
124123
}
125124
}

src/main/java/io/dinject/javalin/generator/ProcessingContext.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ void logError(Element e, String msg, Object... args) {
6666
messager.printMessage(Diagnostic.Kind.ERROR, String.format(msg, args), e);
6767
}
6868

69-
void logDebug(String msg, Object... args) {
70-
messager.printMessage(Diagnostic.Kind.NOTE, String.format(msg, args));
71-
}
69+
// void logDebug(String msg, Object... args) {
70+
// messager.printMessage(Diagnostic.Kind.NOTE, String.format(msg, args));
71+
// }
7272

7373
/**
7474
* Create a file writer for the given class name.

src/main/java/io/dinject/javalin/generator/Processor.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ public Set<String> getSupportedAnnotationTypes() {
3030
return annotations;
3131
}
3232

33-
void logDebug(String msg, Object... args) {
34-
ctx.logDebug(msg, args);
35-
}
36-
3733
@Override
3834
public synchronized void init(ProcessingEnvironment processingEnv) {
3935
super.init(processingEnv);

0 commit comments

Comments
 (0)