Skip to content

Commit

Permalink
Update Region.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeterka authored Nov 9, 2016
1 parent d381214 commit db3e5cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java/com/netflix/ice/tag/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class Region extends Tag {

public static final Region US_EAST_1 = new Region("us-east-1", "USE1");
public static final Region US_EAST_2 = new Region("us-east-1", "USE2");
public static final Region US_EAST_2 = new Region("us-east-2", "USE2");
public static final Region US_WEST_1 = new Region("us-west-1", "USW1");
public static final Region US_WEST_2 = new Region("us-west-2", "USW2");
public static final Region EU_WEST_1 = new Region("eu-west-1", "EU");
Expand Down Expand Up @@ -102,4 +102,4 @@ public static List<Region> getRegions(List<String> names) {
public static List<Region> getAllRegions() {
return Lists.newArrayList(regionsByName.values());
}
}
}

0 comments on commit db3e5cb

Please sign in to comment.