Skip to content

Commit 53be635

Browse files
committed
moved classes
1 parent c3b4445 commit 53be635

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

src/main/java/com/oneapm/coffee/maker/CoffeeMaker.java renamed to src/main/java/com/github/seanyinx/sandbox/coffee/maker/CoffeeMaker.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.oneapm.coffee.maker;
1+
package com.github.seanyinx.sandbox.coffee.maker;
22

3-
import static com.oneapm.coffee.maker.CoffeeType.BLACK;
4-
import static com.oneapm.coffee.maker.CoffeeType.CAPPUCCINO;
5-
import static com.oneapm.coffee.maker.CoffeeType.ESPRESSO;
6-
import static com.oneapm.coffee.maker.CoffeeType.LATTE;
7-
import static com.oneapm.coffee.maker.CoffeeType.MOCHA;
3+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.BLACK;
4+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.CAPPUCCINO;
5+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.ESPRESSO;
6+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.LATTE;
7+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.MOCHA;
88

99
public class CoffeeMaker {
1010
static final String WATER = "Water";

src/main/java/com/oneapm/coffee/maker/CoffeeType.java renamed to src/main/java/com/github/seanyinx/sandbox/coffee/maker/CoffeeType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oneapm.coffee.maker;
1+
package com.github.seanyinx.sandbox.coffee.maker;
22

33
public enum CoffeeType {
44
CAPPUCCINO,

src/main/java/com/oneapm/coffee/maker/Pourable.java renamed to src/main/java/com/github/seanyinx/sandbox/coffee/maker/Pourable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oneapm.coffee.maker;
1+
package com.github.seanyinx.sandbox.coffee.maker;
22

33
interface Pourable {
44
void pour(String stuff);

src/test/java/com/oneapm/coffee/maker/CoffeeMakerTest.java renamed to src/test/java/com/github/seanyinx/sandbox/coffee/maker/CoffeeMakerTest.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
package com.oneapm.coffee.maker;
2-
3-
import org.junit.Test;
1+
package com.github.seanyinx.sandbox.coffee.maker;
42

53
import java.util.ArrayList;
64
import java.util.List;
5+
import org.junit.Test;
76

8-
import static com.oneapm.coffee.maker.CoffeeType.BLACK;
9-
import static com.oneapm.coffee.maker.CoffeeType.CAPPUCCINO;
10-
import static com.oneapm.coffee.maker.CoffeeType.ESPRESSO;
11-
import static com.oneapm.coffee.maker.CoffeeType.LATTE;
12-
import static com.oneapm.coffee.maker.CoffeeType.MOCHA;
7+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.BLACK;
8+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.CAPPUCCINO;
9+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.ESPRESSO;
10+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.LATTE;
11+
import static com.github.seanyinx.sandbox.coffee.maker.CoffeeType.MOCHA;
1312
import static org.hamcrest.MatcherAssert.assertThat;
14-
import static org.hamcrest.Matchers.contains;
13+
import static org.hamcrest.collection.IsIterableContainingInOrder.contains;
1514

1615
public class CoffeeMakerTest {
1716

src/test/java/com/oneapm/tps/agent/service/domain/SqlTraceDataEntityReflectionTest.java renamed to src/test/java/com/github/seanyinx/sandbox/tps/agent/service/domain/SqlTraceDataEntityReflectionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.oneapm.tps.agent.service.domain;
1+
package com.github.seanyinx.sandbox.tps.agent.service.domain;
22

33
import org.junit.Test;
44

0 commit comments

Comments
 (0)