< prev index next >

src/java.base/share/classes/sun/misc/CharacterDecoder.java

Print this page

        

@@ -118,11 +118,11 @@
     protected void decodeLineSuffix(PushbackInputStream aStream, OutputStream bStream) throws IOException { }
 
     /**
      * This method does an actual decode. It takes the decoded bytes and
      * writes them to the OutputStream. The integer <i>l</i> tells the
-     * method how many bytes are required. This is always <= bytesPerAtom().
+     * method how many bytes are required. This is always {@literal <=} bytesPerAtom().
      */
     protected void decodeAtom(PushbackInputStream aStream, OutputStream bStream, int l) throws IOException {
         throw new CEStreamExhausted();
     }
 
< prev index next >