Skip to content

Commit c428c8b

Browse files
committed
Fix whitespace in EdgeServer.java
Someone used spaces instead of tabs on two of the lines.
1 parent cecd088 commit c428c8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rss-edge/src/main/java/com/netflix/recipes/rss/server/EdgeServer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ public EdgeServer() {
3535

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

4040
String appId = ConfigurationManager.getDeploymentContext().getApplicationId();
41-
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();
41+
String env = ConfigurationManager.getDeploymentContext().getDeploymentEnvironment();
4242

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

0 commit comments

Comments
 (0)