Skip to content

Commit

Permalink
Use UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayyy committed May 16, 2021
1 parent edf273c commit b242575
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/uorocketry/basestation/data/Data.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package uorocketry.basestation.data;

import java.io.Console;
import java.text.DecimalFormat;

public class Data {
Expand Down Expand Up @@ -62,7 +61,7 @@ public Data(float degrees, float minutes) {
public String getFormattedString() {
switch (type) {
case FORMATTED_COORDINATE:
return Math.round(data) + "° " + minutes + " '";
return Math.round(data) + "° " + minutes + " '";
case LONG:
return format.format(dataLong);
default:
Expand Down

0 comments on commit b242575

Please sign in to comment.