Skip to content

Commit

Permalink
Fix whitespace in EdgeServer.java
Browse files Browse the repository at this point in the history
Someone used spaces instead of tabs on two of the lines.
  • Loading branch information
trotter committed Mar 14, 2013
1 parent cecd088 commit c428c8b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -35,10 +35,10 @@ public EdgeServer() {

public static void main(final String[] args) throws Exception {
System.setProperty("archaius.deployment.applicationId", "edge");
System.setProperty(PropertyNames.SERVER_BOOTSTRAP_BASE_PACKAGES_OVERRIDE, "com.netflix");
System.setProperty(PropertyNames.SERVER_BOOTSTRAP_BASE_PACKAGES_OVERRIDE, "com.netflix");

String appId = ConfigurationManager.getDeploymentContext().getApplicationId();
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();

// populate the eureka-specific properties
System.setProperty("eureka.client.props", appId);
Expand All @@ -49,4 +49,4 @@ public static void main(final String[] args) throws Exception {
EdgeServer edgeServer = new EdgeServer();
edgeServer.start();
}
}
}

0 comments on commit c428c8b

Please sign in to comment.