Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java b/plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java
index c478474ccde..94d9fb70d68 100644
--- a/plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java
+++ b/plugins/org.eclipse.osee.framework.ui.swt/src/org/eclipse/osee/framework/ui/swt/LatLongBox.java
@@ -176,8 +176,8 @@ public class LatLongBox extends Composite {
}
if (value != prevValue.longValue()) {
double sign = value < 0 ? -1.0 : 1.0;
- dValue =
- value + sign * (Integer.parseInt(minutesTxt.getText()) / 60.0 + Integer.parseInt(secondsTxt.getText()) / 3600.0);
+ dValue = value + sign * (Integer.parseInt(minutesTxt.getText()) / 60.0 + Integer.parseInt(
+ secondsTxt.getText()) / 3600.0);
System.out.println("latlong degrees changed: degrees = " + value + ", dValue=" + dValue);
}
} catch (Throwable t) {
@@ -427,7 +427,8 @@ public class LatLongBox extends Composite {
@Override
public String toString() {
- return String.format(degreesTxt.getText() + (char) 0xb0 + minutesTxt.getText() + "' " + secondsTxt.getText() + "\"");
+ return String.format(
+ degreesTxt.getText() + (char) 0xb0 + minutesTxt.getText() + "' " + secondsTxt.getText() + "\"");
}
}

Back to the top