added tostring to system scope to help with debugging

pull/324/merge
Justin Richer 2013-04-19 16:11:42 -04:00
parent 0e2d5830a4
commit 7307b4b19d
1 changed files with 5 additions and 0 deletions

View File

@ -201,6 +201,11 @@ public class SystemScope {
return true;
}
@Override
public String toString() {
return "SystemScope [value=" + value + ", description=" + description + ", icon=" + icon + ", allowDynReg=" + allowDynReg + ", defaultScope=" + defaultScope + "]";
}
}