You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:52:32 UTC

[26/36] brooklyn-ui git commit: BROOKLYN-162 - apply org.apache package prefix to utils-common

BROOKLYN-162 - apply org.apache package prefix to utils-common


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/commit/e10e83b9
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/tree/e10e83b9
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/diff/e10e83b9

Branch: refs/heads/0.8.0-incubating
Commit: e10e83b95a41d0ee27f09b7ac56ece6d366807e4
Parents: 9ce7da8
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Tue Aug 18 13:14:41 2015 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Tue Aug 18 14:51:55 2015 +0100

----------------------------------------------------------------------
 .../apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java | 3 +--
 .../brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java    | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/e10e83b9/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java
----------------------------------------------------------------------
diff --git a/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java b/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java
index c32c832..8e64624 100644
--- a/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java
+++ b/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncher.java
@@ -24,9 +24,8 @@ import org.eclipse.jetty.server.Server;
 import org.eclipse.jetty.webapp.WebAppContext;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-
 import org.apache.brooklyn.rest.BrooklynRestApiLauncher;
-import brooklyn.util.net.Networking;
+import org.apache.brooklyn.util.net.Networking;
 
 /** launches Javascript GUI programmatically. and used for tests.
  * see {@link BrooklynRestApiLauncher} for more information.

http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/e10e83b9/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java
----------------------------------------------------------------------
diff --git a/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java b/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java
index c9d6818..dc7ee73 100644
--- a/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java
+++ b/usage/jsgui/src/test/java/org/apache/brooklyn/rest/jsgui/BrooklynJavascriptGuiLauncherTest.java
@@ -18,6 +18,7 @@
  */
 package org.apache.brooklyn.rest.jsgui;
 
+import org.apache.brooklyn.test.Asserts;
 import org.apache.brooklyn.test.HttpTestUtils;
 import org.eclipse.jetty.server.Server;
 import org.eclipse.jetty.server.handler.ContextHandler;
@@ -30,8 +31,6 @@ import brooklyn.entity.basic.Entities;
 import org.apache.brooklyn.api.management.ManagementContext;
 import org.apache.brooklyn.rest.BrooklynRestApiLauncherTestFixture;
 
-import brooklyn.test.Asserts;
-
 /** Convenience and demo for launching programmatically. */
 public class BrooklynJavascriptGuiLauncherTest {