Skip to content

Commit eefac39

Browse files
Minor fix
1 parent a329110 commit eefac39

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

algorithms-miscellaneous-2/src/main/java/com/baeldung/algorithms/mercator/EllipticalMercator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package com.mercator;
1+
package com.baeldung.algorithms.mercator;
22

33
class EllipticalMercator extends Mercator {
4-
4+
55
@Override
66
double yAxisProjection(double input) {
77

algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/mercator/EllipticalMercatorUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.mercator;
1+
package com.baeldung.algorithms.mercator;
22

33
import org.junit.Test;
44

algorithms-miscellaneous-2/src/test/java/com/baeldung/algorithms/mercator/SphericalMercatorUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.mercator;
1+
package com.baeldung.algorithms.mercator;
22

33
import org.junit.Test;
44
import static junit.framework.TestCase.assertEquals;

0 commit comments

Comments
 (0)