Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

remove the special toString() in order to sync with ESH #3679

Merged
merged 1 commit into from
Jan 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@
public enum UnDefType implements PrimitiveType, State {
UNDEF, NULL;

public String toString() {
switch(this) {
case UNDEF: return "Undefined";
case NULL: return "Uninitialized";
}
return "";
}

public String format(String pattern) {
return String.format(pattern, this.toString());
}
Expand Down