Skip to content

Commit 58c1193

Browse files
committed
Map compiler.warn.override.varargs.missing
1 parent 0fbbca9 commit 58c1193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

org.eclipse.jdt.core.javac/src/org/eclipse/jdt/internal/javac/JavacProblemConverter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2024 Microsoft Corporation and others.
2+
* Copyright (c) 2024, 2025 Microsoft Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -1025,6 +1025,7 @@ yield switch (rootCauseCode) {
10251025
case "compiler.err.try.without.catch.finally.or.resource.decls" -> IProblem.Syntax;
10261026
case "compiler.warn.unchecked.meth.invocation.applied" -> IProblem.UnsafeTypeConversion;
10271027
case "compiler.warn.override.unchecked.ret" -> IProblem.UnsafeReturnTypeOverride;
1028+
case "compiler.warn.override.varargs.missing" -> IProblem.VarargsConflict;
10281029
case "compiler.err.encl.class.required" -> IProblem.MissingEnclosingInstanceForConstructorCall;
10291030
case "compiler.err.operator.cant.be.applied", "compiler.err.operator.cant.be.applied.1" -> IProblem.InvalidOperator;
10301031
case "compiler.warn.try.resource.not.referenced" -> IProblem.LocalVariableIsNeverUsed; // not in ECJ

0 commit comments

Comments
 (0)