Skip to content

Commit edbaa7d

Browse files
committed
Remove elapsed note
1 parent cd7a21b commit edbaa7d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

icepick-processor/src/main/java/icepick/processor/IcepickProcessor.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,9 @@ public class IcepickProcessor extends AbstractProcessor {
2222

2323
@Override
2424
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment environment) {
25-
long startTime = System.currentTimeMillis();
26-
2725
for (TypeElement annotation : annotations) {
2826
write(classesWithFieldsAnnotatedWith(environment.getElementsAnnotatedWith(annotation)));
2927
}
30-
31-
long elapsedTime = System.currentTimeMillis() - startTime;
32-
messager().printMessage(Diagnostic.Kind.NOTE,
33-
"IcepickProcessor took " + elapsedTime + " milliseconds");
3428
return true;
3529
}
3630

@@ -79,4 +73,4 @@ private Types typeUtils() {
7973
private Filer filer() {
8074
return processingEnv.getFiler();
8175
}
82-
}
76+
}

0 commit comments

Comments
 (0)