Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 949 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/eventbus/client/nonpublic/LLAlertUnexpectedEventPackageHandler.java

Diff revisions: vs.
  @@ -4,7 +4,7 @@
4 4 import org.litesoft.GWT.client.*;
5 5 import org.litesoft.GWT.client.nonpublic.*;
6 6 import org.litesoft.GWT.eventbus.client.*;
7 - import org.litesoft.commonfoundation.typeutils.*;
7 + import org.litesoft.commonfoundation.base.*;
8 8
9 9 public class LLAlertUnexpectedEventPackageHandler extends LLAlertUnexpectedProblemHandler
10 10 implements LLUnexpectedEventPackageHandler {
  @@ -13,7 +13,7 @@
13 13 String zBody = "There was an unexpected message to:\n\n" + //
14 14 " " + zFriendlyFrom;
15 15 String zDetail = "Unexpected EventPackage from: " + pFrom + "\n" + //
16 - " of type (" + Objects.classNameOf( pPackage ) + "):\n" + //
16 + " of type (" + ClassName.full( pPackage ) + "):\n" + //
17 17 pPackage;
18 18 AlertManager.alert( pFrom, "Error", zBody, zDetail );
19 19 }