Remove brute force debug

This commit is contained in:
Fury_Phoenix 2023-12-10 23:00:07 -08:00
parent 244fb8b4ee
commit 53c96d33f0
No known key found for this signature in database
GPG Key ID: 0595F98084987DB8

View File

@ -92,7 +92,6 @@ public class ClientMixinValidator {
private boolean isClientMarked(TypeElement te) { private boolean isClientMarked(TypeElement te) {
for (var marker : getPlatformMarkers(markers)) { for (var marker : getPlatformMarkers(markers)) {
messager.printMessage(Diagnostic.Kind.WARNING, marker.toString());
IAnnotationHandle handle = getAnnotationHandle(te, marker); IAnnotationHandle handle = getAnnotationHandle(te, marker);
if(!handle.exists()) continue; if(!handle.exists()) continue;