Skip to content

Commit

Permalink
removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
dolaf committed Nov 2, 2018
1 parent 4c7b5ff commit 7528d1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/esa/s3tbx/snow/OlciSnowPropertiesOp.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,12 @@ public void initialize() throws OperatorException {
@Override
public void computeTileStack(Map<Band, Tile> targetTiles, Rectangle targetRectangle, ProgressMonitor pm) throws OperatorException {
if (targetRectangle.x == 0 && targetRectangle.y == 0) {
System.out.println("calling computeTileStack: targetRectangle = " + targetRectangle);
// System.out.println("calling computeTileStack: targetRectangle = " + targetRectangle);

Set<Map.Entry<Band, Tile>> entries = targetTiles.entrySet();
entries.forEach(targetTileStream -> {
Band targetBand = targetTileStream.getKey();
System.out.println("targetBand.getName() = " + targetBand.getName());
// System.out.println("targetBand.getName() = " + targetBand.getName());
});
}
try {
Expand Down

0 comments on commit 7528d1a

Please sign in to comment.