|
@@ -51,6 +51,11 @@ public abstract class InsensitiveBinaryComparison extends BinaryOperator<Object,
|
|
|
resolution.message(),
|
|
|
regularOperatorSymbol()
|
|
|
);
|
|
|
+ return new TypeResolution(message);
|
|
|
+ }
|
|
|
+ resolution = TypeResolutions.isExact(e, op, paramOrdinal);
|
|
|
+ if (resolution.unresolved()) {
|
|
|
+ String message = LoggerMessageFormat.format(null, "{}", resolution.message());
|
|
|
resolution = new TypeResolution(message);
|
|
|
}
|
|
|
return resolution;
|