Skip to content
Snippets Groups Projects
Commit 3063dbac authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT: Removed debugging output and commented code.

parent 6d747ce9
No related branches found
No related tags found
2 merge requests!66REL: prepare release 0.8.0,!62Fix large integer queries
Pipeline #24442 passed
......@@ -125,7 +125,6 @@ public class POV implements EntityFilterInterface {
unitStr = m.group(2);
this.vInt = Integer.parseInt(vIntStr);
} catch (final NumberFormatException e) {
System.out.println("Integer exception");
this.vInt = null;
}
......@@ -144,9 +143,6 @@ public class POV implements EntityFilterInterface {
unitStr = m.group(2);
this.vDouble = Double.parseDouble(vDoubleStr);
// if (this.vDouble % 1 == 0) {
// this.vInt = (int) Math.floor(this.vDouble);
// }
} catch (final NumberFormatException e) {
this.vDouble = null;
}
......
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