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:
parent
12431fdb8f
commit
80dd30415e
|
@ -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++;
|
||||
}
|
||||
|
|
|
@ -1071,7 +1071,7 @@ public class SystemUtils {
|
|||
* instance to operate.</p>
|
||||
*/
|
||||
public SystemUtils() {
|
||||
// no init.
|
||||
super();
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue