diff --git a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ExhaustivenessComputer.java b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ExhaustivenessComputer.java index f5eeda60c49..2785f623a26 100644 --- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ExhaustivenessComputer.java +++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ExhaustivenessComputer.java @@ -640,7 +640,8 @@ public class ExhaustivenessComputer { } protected void checkTimeout() { - if (startTime != (-1) && (System.currentTimeMillis() - startTime) > missingExhaustivenessTimeout) { + if (startTime != (-1) && + (System.currentTimeMillis() - startTime) > missingExhaustivenessTimeout) { throw new TimeoutException(null); } }