fix(serialize-generator): remove debug log

This commit is contained in:
Johannes Frohnmeyer 2024-04-24 15:03:50 +02:00
parent f229dd496b
commit efff813ed6
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ public class InferredAdapter extends AdapterAdapter<InferredAdapter.Hydrated> {
var tmp = findTypeAdapterClass(type, refs);
// Ignore nullSafe for now
if (tmp != null) {
message.printMessage(Diagnostic.Kind.WARNING, "Inferred type adapter for " + type + " to " + tmp.left() + " (nullSafe: " + tmp.right() + ")");
this.typeAdapterClass = tmp.left();
}
}