src/share/classes/com/sun/tools/javac/jvm/ClassReader.java

changeset 604
a5454419dd46
parent 591
d1d7595fa824
child 674
584365f256a7
     1.1 --- a/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Mon Jul 12 16:37:46 2010 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Tue Jul 13 19:14:09 2010 -0700
     1.3 @@ -2628,7 +2628,7 @@
     1.4       *  @param arg An argument for substitution into the output string.
     1.5       */
     1.6      private void printVerbose(String key, CharSequence arg) {
     1.7 -        Log.printLines(log.noticeWriter, Log.getLocalizedString("verbose." + key, arg));
     1.8 +        log.printNoteLines("verbose." + key, arg);
     1.9      }
    1.10  
    1.11      /** Output for "-checkclassfile" option.
    1.12 @@ -2636,7 +2636,7 @@
    1.13       *  @param arg An argument for substitution into the output string.
    1.14       */
    1.15      private void printCCF(String key, Object arg) {
    1.16 -        Log.printLines(log.noticeWriter, Log.getLocalizedString(key, arg));
    1.17 +        log.printNoteLines(key, arg);
    1.18      }
    1.19  
    1.20  

mercurial