Skip to content

Commit 0f41de0

Browse files
committed
Fix spotless check
1 parent 835f3ae commit 0f41de0

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ public String mapRow(ResultSet rs, int rowNum) throws SQLException {
7272

7373
private static final RowMapper<SortableShow> SHOW_MAPPER = new RowMapper<SortableShow>() {
7474
public SortableShow mapRow(ResultSet rs, int rowNum) throws SQLException {
75-
return new SortableShow(
76-
rs.getString("pk_show"),
77-
rs.getString("str_show_name"),
75+
return new SortableShow(rs.getString("pk_show"), rs.getString("str_show_name"),
7876
rs.getFloat("float_tier")
7977
);
8078
}
@@ -207,8 +205,8 @@ private Set<String> findDispatchJobs(DispatchHost host, int numJobs, boolean shu
207205
String showName = s.getShowName();
208206
String exclusionKey = showName + ":" + host.allocationName;
209207
if (exclusionList.contains(exclusionKey)) {
210-
logger.info("skipping show " + showName + " on allocation " +
211-
host.allocationName + " due to exclusion list");
208+
logger.info("skipping show " + showName + " on allocation "
209+
+ host.allocationName + " due to exclusion list");
212210
continue;
213211
}
214212
}

0 commit comments

Comments
 (0)