Skip to content

Commit

Permalink
gwt: Move CookieManager and ExceptionHandler to the ro.pub.cs.vmcheck…
Browse files Browse the repository at this point in the history
…er.client.util package.
  • Loading branch information
calin-iorgulescu committed Mar 10, 2015
1 parent dcb0662 commit 7802b76
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import ro.pub.cs.vmchecker.client.ui.StatusWidget;
import ro.pub.cs.vmchecker.client.ui.HeaderWidget;
import ro.pub.cs.vmchecker.client.ui.LoginWidget;
import ro.pub.cs.vmchecker.client.util.CookieManager;

import com.google.gwt.core.client.GWT;
import com.google.gwt.event.logical.shared.ValueChangeEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ro.pub.cs.vmchecker.client;

import ro.pub.cs.vmchecker.client.service.HTTPService;
import ro.pub.cs.vmchecker.client.util.ExceptionHandler;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.shared.SimpleEventBus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public enum OwnerType {
public HashMap<String, String> results;

public ResultInfo(OwnerType owner, String name, HashMap<String, String> results) {
this.owner = owner;
this.owner = owner;
this.name = name;
this.results = results;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ro.pub.cs.vmchecker.client;
package ro.pub.cs.vmchecker.client.util;

import java.util.Date;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ro.pub.cs.vmchecker.client;
package ro.pub.cs.vmchecker.client.util;

import ro.pub.cs.vmchecker.client.event.ErrorDisplayEvent;

Expand Down

0 comments on commit 7802b76

Please sign in to comment.