added invocation of super() to constructor

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@202044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Caswell 2005-06-27 20:25:23 +00:00
parent 12431fdb8f
commit 80dd30415e
2 changed files with 3 additions and 2 deletions

View File

@ -168,7 +168,7 @@ public class StringUtils {
* instance to operate.</p>
*/
public StringUtils() {
// no init.
super();
}
// Empty checks
@ -3213,6 +3213,7 @@ public class StringUtils {
} else if (last == '\r') {
// why is this block empty?
// just to skip incrementing the index?
;
} else {
lastIdx++;
}

View File

@ -1071,7 +1071,7 @@ public class SystemUtils {
* instance to operate.</p>
*/
public SystemUtils() {
// no init.
super();
}
//-----------------------------------------------------------------------