Skip to content

Commit cfa423f

Browse files
committed
Just JavaDoc corrections from Java 8
1 parent 1f4a1b0 commit cfa423f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sources/net.sf.j2s.java.core/src/javax/swing/text/BadLocationException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* future Swing releases. The current serialization support is
3737
* appropriate for short term storage or RMI between applications running
3838
* the same version of Swing. As of 1.4, support for long term storage
39-
* of all JavaBeans<sup><font size="-2">TM</font></sup>
39+
* of all JavaBeans&trade;
4040
* has been added to the <code>java.beans</code> package.
4141
* Please see {@link java.beans.XMLEncoder}.
4242
*
@@ -49,7 +49,7 @@ public class BadLocationException extends Exception
4949
* Creates a new BadLocationException object.
5050
*
5151
* @param s a string indicating what was wrong with the arguments
52-
* @param offs offset within the document that was requested >= 0
52+
* @param offs offset within the document that was requested &gt;= 0
5353
*/
5454
public BadLocationException(String s, int offs) {
5555
super(s);
@@ -59,7 +59,7 @@ public BadLocationException(String s, int offs) {
5959
/**
6060
* Returns the offset into the document that was not legal.
6161
*
62-
* @return the offset >= 0
62+
* @return the offset &gt;= 0
6363
*/
6464
public int offsetRequested() {
6565
return offs;

0 commit comments

Comments
 (0)