BAEL-2797 wrongly renamed Algorithms-1 package fixed

This commit is contained in:
anilkivilcim.eray
2019-04-04 16:13:27 +03:00
parent 2069c7f4a1
commit c94431ff3b
64 changed files with 67 additions and 85 deletions

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import java.util.Arrays;
import java.util.Iterator;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import org.paukov.combinatorics3.Generator;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import java.util.Arrays;
import java.util.Set;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import java.util.ArrayList;
import java.util.Arrays;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import java.util.ArrayList;
import java.util.Arrays;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import java.util.ArrayList;
import java.util.Arrays;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.distancebetweenpoints;
package com.baeldung.algorithms.distancebetweenpoints;
import java.awt.geom.Point2D;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.factorial;
package com.baeldung.algorithms.factorial;
import java.math.BigInteger;
import java.util.stream.LongStream;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.linesintersection;
package com.baeldung.algorithms.linesintersection;
import java.awt.Point;
import java.util.Optional;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.mercator;
package com.baeldung.algorithms.mercator;
class EllipticalMercator extends Mercator {

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.mercator;
package com.baeldung.algorithms.mercator;
abstract class Mercator {
final static double RADIUS_MAJOR = 6378137.0;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.mercator;
package com.baeldung.algorithms.mercator;
public class SphericalMercator extends Mercator {

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.percentage;
package com.baeldung.algorithms.percentage;
import java.util.Scanner;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.rectanglesoverlap;
package com.baeldung.algorithms.rectanglesoverlap;
public class Point {

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.rectanglesoverlap;
package com.baeldung.algorithms.rectanglesoverlap;
public class Rectangle {

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.roundedup;
package com.baeldung.algorithms.roundedup;
import java.util.Scanner;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.combination;
package com.baeldung.algorithms.combination;
import static org.junit.jupiter.api.Assertions.assertEquals;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.distancebetweenpoints;
package com.baeldung.algorithms.distancebetweenpoints;
import org.junit.Test;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.factorial;
package com.baeldung.algorithms.factorial;
import static org.assertj.core.api.Assertions.assertThat;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.linesintersection;
package com.baeldung.algorithms.linesintersection;
import java.awt.Point;
import java.util.Optional;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.mercator;
package com.baeldung.algorithms.mercator;
import org.junit.Assert;
import org.junit.Test;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.mercator;
package com.baeldung.algorithms.mercator;
import org.junit.Assert;
import org.junit.Test;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.percentage;
package com.baeldung.algorithms.percentage;
import org.junit.Assert;
import org.junit.Test;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.rectanglesoverlap;
package com.baeldung.algorithms.rectanglesoverlap;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;

View File

@@ -1,4 +1,4 @@
package com.baeldung.math.roundedup;
package com.baeldung.algorithms.roundedup;
import static org.junit.Assert.assertEquals;