Subversion Repository Public Repository

litesoft

Diff Revisions 60 vs 811 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.core.util.*;
7 + import org.litesoft.core.typeutils.*;
8 8
9 9 public class LLAlertUnexpectedEventPackageHandler extends LLAlertUnexpectedProblemHandler
10 10 implements LLUnexpectedEventPackageHandler
  @@ -15,7 +15,7 @@
15 15 String zBody = "There was an unexpected message to:\n\n" + //
16 16 " " + zFriendlyFrom;
17 17 String zDetail = "Unexpected EventPackage from: " + pFrom + "\n" + //
18 - " of type (" + UtilsCommon.classNameOf( pPackage ) + "):\n" + //
18 + " of type (" + Objects.classNameOf( pPackage ) + "):\n" + //
19 19 pPackage;
20 20 AlertManager.alert( pFrom, "Error", zBody, zDetail );
21 21 }