Skip to content

Commit 8026b28

Browse files
committed
Fix identation
1 parent 0f41de0 commit 8026b28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cuebot/src/main/java/com/imageworks/spcue/dao/postgres/DispatcherDaoJdbc.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public String mapRow(ResultSet rs, int rowNum) throws SQLException {
7373
private static final RowMapper<SortableShow> SHOW_MAPPER = new RowMapper<SortableShow>() {
7474
public SortableShow mapRow(ResultSet rs, int rowNum) throws SQLException {
7575
return new SortableShow(rs.getString("pk_show"), rs.getString("str_show_name"),
76-
rs.getFloat("float_tier")
76+
rs.getFloat("float_tier")
7777
);
7878
}
7979
};
@@ -206,7 +206,7 @@ private Set<String> findDispatchJobs(DispatchHost host, int numJobs, boolean shu
206206
String exclusionKey = showName + ":" + host.allocationName;
207207
if (exclusionList.contains(exclusionKey)) {
208208
logger.info("skipping show " + showName + " on allocation "
209-
+ host.allocationName + " due to exclusion list");
209+
+ host.allocationName + " due to exclusion list");
210210
continue;
211211
}
212212
}

0 commit comments

Comments
 (0)