Skip to content

Commit 6974511

Browse files
committed
fixed misspelling of package
1 parent 25461ae commit 6974511

File tree

113 files changed

+613
-613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+613
-613
lines changed

src/main/java/net/ddns/endercypt/cs2dmap/library/file/read/Cs2dMapReader.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/read/Cs2dMapReader.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.read;
1+
package net.ddns.endercrypt.cs2dmap.library.file.read;
22

33
import java.io.File;
44
import java.io.FileNotFoundException;
55
import java.io.IOException;
66
import java.util.ArrayList;
77
import java.util.List;
88

9-
import net.ddns.endercypt.cs2dmap.library.file.read.stream.Cs2dByteReader;
10-
import net.ddns.endercypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
11-
import net.ddns.endercypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
12-
import net.ddns.endercypt.cs2dmap.library.file.stream.exception.Cs2dUnexpectedEOFException;
13-
import net.ddns.endercypt.cs2dmap.library.map.Cs2dMap;
14-
import net.ddns.endercypt.cs2dmap.library.raw.RawCs2dEntity;
15-
import net.ddns.endercypt.cs2dmap.library.raw.RawCs2dMap;
16-
import net.ddns.endercypt.cs2dmap.library.raw.RawCs2dTile;
17-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
18-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
9+
import net.ddns.endercrypt.cs2dmap.library.file.read.stream.Cs2dByteReader;
10+
import net.ddns.endercrypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
11+
import net.ddns.endercrypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
12+
import net.ddns.endercrypt.cs2dmap.library.file.stream.exception.Cs2dUnexpectedEOFException;
13+
import net.ddns.endercrypt.cs2dmap.library.map.Cs2dMap;
14+
import net.ddns.endercrypt.cs2dmap.library.raw.RawCs2dEntity;
15+
import net.ddns.endercrypt.cs2dmap.library.raw.RawCs2dMap;
16+
import net.ddns.endercrypt.cs2dmap.library.raw.RawCs2dTile;
17+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
18+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
1919

2020
public class Cs2dMapReader
2121
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/read/stream/Cs2dByteReader.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/read/stream/Cs2dByteReader.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.read.stream;
1+
package net.ddns.endercrypt.cs2dmap.library.file.read.stream;
22

33
import java.io.BufferedInputStream;
44
import java.io.ByteArrayOutputStream;
@@ -8,11 +8,11 @@
88
import java.io.IOException;
99
import java.nio.ByteBuffer;
1010

11-
import net.ddns.endercypt.cs2dmap.library.file.stream.Cs2dAbstractIOStream;
12-
import net.ddns.endercypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
13-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.BooleanByte;
14-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
15-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
11+
import net.ddns.endercrypt.cs2dmap.library.file.stream.Cs2dAbstractIOStream;
12+
import net.ddns.endercrypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
13+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.BooleanByte;
14+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
15+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
1616

1717
public class Cs2dByteReader extends Cs2dAbstractIOStream<BufferedInputStream>
1818
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/read/stream/Cs2dMapReadException.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/read/stream/Cs2dMapReadException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.read.stream;
1+
package net.ddns.endercrypt.cs2dmap.library.file.read.stream;
22

3-
import net.ddns.endercypt.cs2dmap.library.file.stream.exception.Cs2dMapException;
3+
import net.ddns.endercrypt.cs2dmap.library.file.stream.exception.Cs2dMapException;
44

55
public class Cs2dMapReadException extends Cs2dMapException
66
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/stream/Cs2dAbstractIOStream.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/stream/Cs2dAbstractIOStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.stream;
1+
package net.ddns.endercrypt.cs2dmap.library.file.stream;
22

33
import java.io.Closeable;
44
import java.io.IOException;

src/main/java/net/ddns/endercypt/cs2dmap/library/file/stream/assist/Cs2dByteInfo.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/stream/assist/Cs2dByteInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.stream.assist;
1+
package net.ddns.endercrypt.cs2dmap.library.file.stream.assist;
22

33
import java.nio.ByteOrder;
44

src/main/java/net/ddns/endercypt/cs2dmap/library/file/stream/exception/Cs2dMapException.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/stream/exception/Cs2dMapException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.stream.exception;
1+
package net.ddns.endercrypt.cs2dmap.library.file.stream.exception;
22

33
public class Cs2dMapException extends RuntimeException
44
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/stream/exception/Cs2dUnexpectedEOFException.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/stream/exception/Cs2dUnexpectedEOFException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.stream.exception;
1+
package net.ddns.endercrypt.cs2dmap.library.file.stream.exception;
22

33
import java.io.BufferedWriter;
44
import java.io.File;
55
import java.io.FileWriter;
66
import java.io.IOException;
77
import java.io.PrintStream;
88

9-
import net.ddns.endercypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
10-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
9+
import net.ddns.endercrypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
10+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
1111

1212
public class Cs2dUnexpectedEOFException extends Cs2dMapReadException
1313
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/write/Cs2dMapWriter.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/write/Cs2dMapWriter.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.write;
1+
package net.ddns.endercrypt.cs2dmap.library.file.write;
22

33
import java.io.File;
44
import java.io.FileNotFoundException;
55
import java.io.IOException;
66

7-
import net.ddns.endercypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
8-
import net.ddns.endercypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
9-
import net.ddns.endercypt.cs2dmap.library.file.write.stream.Cs2dByteWriter;
10-
import net.ddns.endercypt.cs2dmap.library.map.Cs2dMap;
11-
import net.ddns.endercypt.cs2dmap.library.raw.RawCs2dEntity;
12-
import net.ddns.endercypt.cs2dmap.library.raw.RawCs2dMap;
13-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
7+
import net.ddns.endercrypt.cs2dmap.library.file.read.stream.Cs2dMapReadException;
8+
import net.ddns.endercrypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
9+
import net.ddns.endercrypt.cs2dmap.library.file.write.stream.Cs2dByteWriter;
10+
import net.ddns.endercrypt.cs2dmap.library.map.Cs2dMap;
11+
import net.ddns.endercrypt.cs2dmap.library.raw.RawCs2dEntity;
12+
import net.ddns.endercrypt.cs2dmap.library.raw.RawCs2dMap;
13+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
1414

1515
public class Cs2dMapWriter
1616
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/write/stream/Cs2dByteWriteCompare.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/write/stream/Cs2dByteWriteCompare.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.write.stream;
1+
package net.ddns.endercrypt.cs2dmap.library.file.write.stream;
22

33
import java.io.BufferedInputStream;
44
import java.io.File;
@@ -9,8 +9,8 @@
99
import java.util.Arrays;
1010
import java.util.function.Consumer;
1111

12-
import net.ddns.endercypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
13-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
12+
import net.ddns.endercrypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
13+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
1414

1515
public class Cs2dByteWriteCompare extends Cs2dByteWriter
1616
{

src/main/java/net/ddns/endercypt/cs2dmap/library/file/write/stream/Cs2dByteWriter.java renamed to src/main/java/net/ddns/endercrypt/cs2dmap/library/file/write/stream/Cs2dByteWriter.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.ddns.endercypt.cs2dmap.library.file.write.stream;
1+
package net.ddns.endercrypt.cs2dmap.library.file.write.stream;
22

33
import java.io.BufferedOutputStream;
44
import java.io.File;
@@ -9,11 +9,11 @@
99
import java.util.Objects;
1010
import java.util.function.Consumer;
1111

12-
import net.ddns.endercypt.cs2dmap.library.file.stream.Cs2dAbstractIOStream;
13-
import net.ddns.endercypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
14-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.BooleanByte;
15-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByte;
16-
import net.ddns.endercypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
12+
import net.ddns.endercrypt.cs2dmap.library.file.stream.Cs2dAbstractIOStream;
13+
import net.ddns.endercrypt.cs2dmap.library.file.stream.assist.Cs2dByteInfo;
14+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.BooleanByte;
15+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByte;
16+
import net.ddns.endercrypt.cs2dmap.library.raw.rawbyte.RawByteFlags;
1717

1818
public class Cs2dByteWriter extends Cs2dAbstractIOStream<BufferedOutputStream>
1919
{

0 commit comments

Comments
 (0)