changed constructor empty statement to super

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@209374 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Caswell 2005-07-06 01:17:48 +00:00
parent 0732223726
commit fc794c60ef

View File

@ -40,7 +40,7 @@ public class EnumUtils {
* @since 2.0
*/
public EnumUtils() {
; // empty constructor
super();
}
/**