Skip to content

Commit 9cc63ca

Browse files
committed
Remove java import
1 parent e097173 commit 9cc63ca

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/kotlin/gov/nasa/worldwind/geom/coords/MGRSCoord.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
package gov.nasa.worldwind.geom.coords
77

88
import gov.nasa.worldwind.geom.Angle
9-
import java.util.*
109

1110
/**
1211
* This class holds an immutable MGRS coordinate string along with
@@ -84,7 +83,7 @@ class MGRSCoord
8483
var upperString = MGRSString
8584
require(upperString.isNotEmpty()) { "String Is Null" }
8685

87-
upperString = upperString.uppercase(Locale.getDefault()).replace(" ".toRegex(), "")
86+
upperString = upperString.uppercase().replace(" ".toRegex(), "")
8887

8988
val converter = MGRSCoordConverter()
9089
val err = converter.convertMGRSToGeodetic(upperString)

0 commit comments

Comments
 (0)