Skip to content

Commit d2481a3

Browse files
author
zhourenjian
committed
Remove unnecessary whitespace characters
1 parent 70dbea3 commit d2481a3

File tree

1 file changed

+5
-5
lines changed
  • sources/net.sf.j2s.java.core/src/java/lang

1 file changed

+5
-5
lines changed

sources/net.sf.j2s.java.core/src/java/lang/Integer.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ Integer.TYPE = Integer.prototype.TYPE = Integer;
4040
Clazz.defineMethod (Integer, "parseInt",
4141
function (s, radix) {
4242
if (s == null) {
43-
throw new NumberFormatException ("null");
43+
throw new NumberFormatException ("null");
4444
}if (radix < 2) {
45-
throw new NumberFormatException ("radix " + radix + " less than Character.MIN_RADIX");
45+
throw new NumberFormatException ("radix " + radix + " less than Character.MIN_RADIX");
4646
}if (radix > 36) {
47-
throw new NumberFormatException ("radix " + radix + " greater than Character.MAX_RADIX");
47+
throw new NumberFormatException ("radix " + radix + " greater than Character.MAX_RADIX");
4848
}
4949
var integer = parseInt (s, radix);
50-
if(isNaN(integer)){
51-
throw new NumberFormatException ("Not a Number : " + s);
50+
if(isNaN(integer)){
51+
throw new NumberFormatException ("Not a Number : " + s);
5252
}
5353
return integer;
5454
}, "String, Number");

0 commit comments

Comments
 (0)