Skip to content

Commit 523dbfd

Browse files
Kentros AlexandrosKentros Alexandros
authored andcommitted
Package refactoring
1 parent cd03f9f commit 523dbfd

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

src/main/java/com/goxr3plus/javastreamplayer/application/Main.java renamed to src/main/java/com/goxr3plus/streamplayer/application/Main.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
package com.goxr3plus.javastreamplayer.application;
1+
package com.goxr3plus.streamplayer.application;
22
/**
33
*
44
*/
55

66
import java.io.File;
77
import java.util.Map;
88

9-
import com.goxr3plus.javastreamplayer.stream.Status;
10-
import com.goxr3plus.javastreamplayer.stream.StreamPlayer;
11-
import com.goxr3plus.javastreamplayer.stream.StreamPlayerListener;
12-
import com.goxr3plus.javastreamplayer.stream.StreamPlayerEvent;
13-
import com.goxr3plus.javastreamplayer.stream.StreamPlayerException;
9+
import com.goxr3plus.streamplayer.stream.Status;
10+
import com.goxr3plus.streamplayer.stream.StreamPlayer;
11+
import com.goxr3plus.streamplayer.stream.StreamPlayerListener;
12+
import com.goxr3plus.streamplayer.stream.StreamPlayerEvent;
13+
import com.goxr3plus.streamplayer.stream.StreamPlayerException;
1414

1515
/**
1616
* @author GOXR3PLUS

src/main/java/com/goxr3plus/javastreamplayer/stream/Status.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/Status.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424

25-
package com.goxr3plus.javastreamplayer.stream;
25+
package com.goxr3plus.streamplayer.stream;
2626

2727

2828
/**

src/main/java/com/goxr3plus/javastreamplayer/stream/StreamPlayer.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* and this list of conditions without modification.
99
*/
1010

11-
package com.goxr3plus.javastreamplayer.stream;
11+
package com.goxr3plus.streamplayer.stream;
1212

1313
import java.io.File;
1414
import java.io.IOException;
@@ -48,7 +48,7 @@
4848
import org.tritonus.share.sampled.file.TAudioFileFormat;
4949

5050
import javazoom.spi.PropertiesContainer;
51-
import com.goxr3plus.javastreamplayer.stream.StreamPlayerException.PlayerException;
51+
import com.goxr3plus.streamplayer.stream.StreamPlayerException.PlayerException;
5252

5353
/**
5454
* StreamPlayer is a class based on JavaSound API. It has been successfully tested under Java 10

src/main/java/com/goxr3plus/javastreamplayer/stream/StreamPlayerEvent.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayerEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
notices that are currently in this file, and this list of conditions without
2121
modification.
2222
*/
23-
package com.goxr3plus.javastreamplayer.stream;
23+
package com.goxr3plus.streamplayer.stream;
2424

2525

2626
/**

src/main/java/com/goxr3plus/javastreamplayer/stream/StreamPlayerEventLauncher.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayerEventLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
notices that are currently in this file, and this list of conditions without
2121
modification.
2222
*/
23-
package com.goxr3plus.javastreamplayer.stream;
23+
package com.goxr3plus.streamplayer.stream;
2424

2525
import java.util.List;
2626
import java.util.concurrent.Callable;

src/main/java/com/goxr3plus/javastreamplayer/stream/StreamPlayerException.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayerException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
modification.
2222
*/
2323

24-
package com.goxr3plus.javastreamplayer.stream;
24+
package com.goxr3plus.streamplayer.stream;
2525

2626
import java.io.PrintStream;
2727
import java.io.PrintWriter;

src/main/java/com/goxr3plus/javastreamplayer/stream/StreamPlayerListener.java renamed to src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayerListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
notices that are currently in this file, and this list of conditions without
2121
modification.
2222
*/
23-
package com.goxr3plus.javastreamplayer.stream;
23+
package com.goxr3plus.streamplayer.stream;
2424

2525
import java.util.Map;
2626

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.goxr3plus.javastreamplayer.stream;
1+
package com.goxr3plus.streamplayer.stream;
22

33
import java.util.concurrent.ThreadFactory;
44
import java.util.concurrent.atomic.AtomicInteger;

0 commit comments

Comments
 (0)