Skip to content

Commit

Permalink
Removed useless dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cavallium committed Oct 15, 2018
1 parent 7698531 commit 1d4c2ec
Show file tree
Hide file tree
Showing 30 changed files with 871 additions and 257 deletions.
2 changes: 1 addition & 1 deletion Flow
Submodule Flow updated from 9acbcc to fc2468
2 changes: 1 addition & 1 deletion bigdecimal-math
Submodule bigdecimal-math updated 1 files
+2 −2 pom.xml
8 changes: 4 additions & 4 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>it.cavallium</groupId>
<artifactId>warppi</artifactId>
<version>0.9.0a2</version>
<version>0.9.0a3</version>
</parent>
<artifactId>warppi-core</artifactId>

Expand All @@ -17,17 +17,17 @@
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>warppi-flow</artifactId>
<version>0.9.0a2</version>
<version>0.9.0a3</version>
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>warppi-util</artifactId>
<version>0.9.0a2</version>
<version>0.9.0a3</version>
</dependency>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>bigdecimal-math</artifactId>
<version>0.9.0a2</version>
<version>0.9.0a3</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
Expand Down
18 changes: 8 additions & 10 deletions core/src/main/java/it/cavallium/warppi/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface Platform {

StorageUtils getStorageUtils();

PngUtils getPngUtils();
ImageUtils getImageUtils();

Settings getSettings();

Expand Down Expand Up @@ -171,19 +171,17 @@ public interface URLClassLoader {

void close() throws IOException;
}

public interface PngUtils {

PngReader load(InputStream resourceStream);

public interface PngReader {

public interface ImageUtils {
ImageReader load(InputStream resourceStream) throws IOException;
public interface ImageReader {
int[] getImageMatrix();

int[] getSize();

}

}

public interface Settings {
Expand Down
Loading

0 comments on commit 1d4c2ec

Please sign in to comment.