Skip to content

Commit f414235

Browse files
committed
Change package structure and add package-info
1 parent 29166bd commit f414235

36 files changed

Lines changed: 192 additions & 155 deletions

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>com.github.pyknic</groupId>
2626
<artifactId>immutable-array</artifactId>
27-
<version>1.0.1</version>
27+
<version>1.0.2</version>
2828
<packaging>jar</packaging>
2929

3030
<name>Immutable Array</name>
@@ -108,6 +108,7 @@
108108
<exclude>**/LICENSE</exclude>
109109
<exclude>**/nbactions.xml</exclude>
110110
<exclude>**/nb-configuration.xml</exclude>
111+
<exclude>**/package-info.java</exclude>
111112
<exclude>src/test/resources/**</exclude>
112113
<exclude>src/main/resources/**</exclude>
113114
</excludes>

src/main/java/com/github/pyknic/bigarray/BooleanImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/BooleanImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.booleans.BooleanImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.booleans.BooleanImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable boolean array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/ByteImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/ByteImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.bytes.ByteImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.bytes.ByteImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable byte array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/DoubleImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/DoubleImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.doubles.DoubleImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.doubles.DoubleImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable double array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/FloatImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/FloatImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.floats.FloatImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.floats.FloatImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable float array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/IntImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/IntImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.ints.IntImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.ints.IntImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable integer array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/LongImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/LongImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.longs.LongImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.longs.LongImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable long array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/ShortImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/ShortImmutableArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray;
17+
package com.github.pyknic.immutablearray;
1818

19-
import com.github.pyknic.bigarray.internal.shorts.ShortImmutableArrayBuilder;
19+
import com.github.pyknic.immutablearray.internal.shorts.ShortImmutableArrayBuilder;
2020

2121
/**
2222
* An immutable short array that can hold a very large number of elements.

src/main/java/com/github/pyknic/bigarray/internal/EmptyImmutableArray.java renamed to src/main/java/com/github/pyknic/immutablearray/internal/EmptyImmutableArray.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray.internal;
17+
package com.github.pyknic.immutablearray.internal;
1818

19-
import com.github.pyknic.bigarray.BooleanImmutableArray;
20-
import com.github.pyknic.bigarray.ByteImmutableArray;
21-
import com.github.pyknic.bigarray.DoubleImmutableArray;
22-
import com.github.pyknic.bigarray.FloatImmutableArray;
23-
import com.github.pyknic.bigarray.IntImmutableArray;
24-
import com.github.pyknic.bigarray.LongImmutableArray;
25-
import com.github.pyknic.bigarray.ShortImmutableArray;
19+
import com.github.pyknic.immutablearray.BooleanImmutableArray;
20+
import com.github.pyknic.immutablearray.ByteImmutableArray;
21+
import com.github.pyknic.immutablearray.DoubleImmutableArray;
22+
import com.github.pyknic.immutablearray.FloatImmutableArray;
23+
import com.github.pyknic.immutablearray.IntImmutableArray;
24+
import com.github.pyknic.immutablearray.LongImmutableArray;
25+
import com.github.pyknic.immutablearray.ShortImmutableArray;
2626

2727
/**
2828
*

src/main/java/com/github/pyknic/bigarray/internal/booleans/BooleanImmutableArrayBuilder.java renamed to src/main/java/com/github/pyknic/immutablearray/internal/booleans/BooleanImmutableArrayBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
* License for the specific language governing permissions and limitations under
1515
* the License.
1616
*/
17-
package com.github.pyknic.bigarray.internal.booleans;
17+
package com.github.pyknic.immutablearray.internal.booleans;
1818

19-
import com.github.pyknic.bigarray.BooleanImmutableArray;
20-
import com.github.pyknic.bigarray.internal.EmptyImmutableArray;
21-
import static com.github.pyknic.bigarray.internal.util.IndexUtil.BUFFER_SIZE;
22-
import com.github.pyknic.bigarray.internal.util.MemoryUtil;
19+
import com.github.pyknic.immutablearray.BooleanImmutableArray;
20+
import com.github.pyknic.immutablearray.internal.EmptyImmutableArray;
21+
import static com.github.pyknic.immutablearray.internal.util.IndexUtil.BUFFER_SIZE;
22+
import com.github.pyknic.immutablearray.internal.util.MemoryUtil;
2323
import java.nio.ByteBuffer;
2424
import java.nio.ShortBuffer;
2525
import java.util.LinkedList;

0 commit comments

Comments
 (0)