diff -r b2064a216117 -r 30c36e23f154 src/share/classes/com/sun/tools/javac/parser/Lexer.java --- a/src/share/classes/com/sun/tools/javac/parser/Lexer.java Sat Sep 08 22:54:21 2012 -0700 +++ b/src/share/classes/com/sun/tools/javac/parser/Lexer.java Thu Sep 13 14:29:36 2012 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -61,7 +61,8 @@ /** * Splits the current token in two and return the first (splitted) token. - * For instance '<<<' is splitted into two tokens '<' and '<<' respectively, + * For instance {@literal '<<<'} is split into two tokens + * {@literal '<'} and {@literal '<<'} respectively, * and the latter is returned. */ Token split();