Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 949 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/InteractorFactory.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.dev.ui.actions.*;
5 5 import org.litesoft.GWT.client.dev.ui.inspection.interactors.*;
6 - import org.litesoft.commonfoundation.typeutils.*;
6 + import org.litesoft.commonfoundation.base.*;
7 7
8 8 import com.google.gwt.dom.client.*;
9 9
  @@ -23,7 +23,7 @@
23 23 return new SetAttributeElementInteractor((SetAttributeActionSpec) pAction, (Element) pUiObject);
24 24
25 25 default:
26 - throw new IllegalArgumentException("Unsupported " + Objects.justClassName( ActionSpecId.class ) + " '" + pAction.getId() + "'");
26 + throw new IllegalArgumentException("Unsupported " + ClassName.simple( ActionSpecId.class ) + " '" + pAction.getId() + "'");
27 27 }
28 28 }
29 29 }