Skip to content

Commit eec6aa0

Browse files
committed
AbstractStringBuilder typo fix for replace()
1 parent f318328 commit eec6aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/net.sf.j2s.java.core/src/java/lang/AbstractStringBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ public AbstractStringBuilder delete(int start, int end) {
841841
/**
842842
* @j2sNative
843843
*
844-
* this.秘s = this.秘s.substring(0, start)+s.substring(end);
844+
* this.秘s = this.秘s.substring(0, start)+this.秘s.substring(end);
845845
*/
846846
//
847847
// int len = end - start;

0 commit comments

Comments
 (0)