Skip to content
Snippets Groups Projects
Commit 20208910 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Removed spurious development trace.

parent 8526d224
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,6 @@
*/
package org.orekit.rugged.core.raster;
import java.io.IOException;
import org.apache.commons.math3.exception.MathIllegalArgumentException;
import org.apache.commons.math3.exception.util.LocalizedFormats;
import org.apache.commons.math3.random.RandomGenerator;
......@@ -99,21 +97,6 @@ public class RandomLandscapeUpdater implements TileUpdater {
}
try {
java.io.PrintStream out = new java.io.PrintStream("/home/luc/x.dat");
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
out.format(java.util.Locale.US, "%d %d %12.3f%n",
i, j, heightMap[i][j]);
}
out.format("%n");
}
out.close();
} catch (IOException ioe) {
ioe.printStackTrace(System.err);
System.exit(1);
}
}
public void updateTile(double latitude, double longitude, UpdatableTile tile)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment