--- old/test/compiler/arguments/BMICommandLineOptionTestBase.java 2014-05-12 22:20:20.372109615 +0400 +++ new/test/compiler/arguments/BMICommandLineOptionTestBase.java 2014-05-12 22:20:20.244109609 +0400 @@ -58,10 +58,11 @@ String supportedCPUFeatures[], String unsupportedCPUFeatures[]) { super(".*", supportedCPUFeatures, unsupportedCPUFeatures); - this.optionName = optionName; - this.warningMessage = warningMessage; - this.errorMessage = CommandLineOptionTest. - UNRECOGNIZED_OPTION_ERROR_FORMAT.format(optionName); + this.optionName = optionName; + this.warningMessage = warningMessage; + this.errorMessage = String.format( + CommandLineOptionTest.UNRECOGNIZED_OPTION_ERROR_FORMAT, + optionName); } }