Skip to content

Commit

Permalink
Please checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
gberaudo committed Oct 6, 2020
1 parent 33ff7e2 commit aed4409
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -753,10 +753,11 @@ public static List<LayerGroup> buildGroups(

// Merge consecutive layers of same render type and same buffer scaling (native
// resolution)
while (i < layers.size() && (l = layers.get(i)) != null &&
getSupportedRenderType(l.getRenderType()) == renderType &&
imageBufferScaling == l.getImageBufferScaling()) {
while (i < layers.size() &&
getSupportedRenderType(layers.get(i).getRenderType()) == renderType &&
imageBufferScaling == layers.get(i).getImageBufferScaling()) {
// will always go there the first time
l = layers.get(i);
LOGGER.debug("Adding layer {} to the group", l.getName());
group.layers.add(l);
group.opaque = group.opaque ||
Expand Down

0 comments on commit aed4409

Please sign in to comment.