From 8b9e230fa75c3178f59dfee28ffbf2f127b589c3 Mon Sep 17 00:00:00 2001 From: Jeffrey Han Date: Tue, 7 Jul 2015 18:37:03 -0500 Subject: [PATCH] Updated dependencies. - LWJGL is now at the final 2.x release version. - Slick2D is now at the final (?) release version. - Added dependency for org.tukaani.xz, since it becomes optional in commons-compress 1.9 and is needed for LZMA compression. Signed-off-by: Jeffrey Han --- pom.xml | 15 ++++++++++----- src/org/newdawn/slick/Image.java | 3 +++ 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 2921441f..c3d33d3e 100644 --- a/pom.xml +++ b/pom.xml @@ -142,12 +142,12 @@ org.lwjgl.lwjgl lwjgl - 2.9.1 + 2.9.3 org.slick2d slick2d-core - 1.0.0 + 1.0.1 org.jcraft @@ -197,17 +197,22 @@ org.apache.maven maven-artifact - 3.0.3 + 3.3.3 org.apache.commons commons-compress - 1.8 + 1.9 + + + org.tukaani + xz + 1.5 com.github.jponge lzma-java - 1.2 + 1.3 diff --git a/src/org/newdawn/slick/Image.java b/src/org/newdawn/slick/Image.java index 1737a808..38d9e8be 100644 --- a/src/org/newdawn/slick/Image.java +++ b/src/org/newdawn/slick/Image.java @@ -595,6 +595,7 @@ public class Image implements Renderable { * @param y The y location to draw the image at * @param filter The color to filter with when drawing */ + @Override public void draw(float x, float y, Color filter) { init(); draw(x,y,width,height, filter); @@ -719,6 +720,7 @@ public class Image implements Renderable { * @param height * The height to render the image at */ + @Override public void draw(float x,float y,float width,float height) { init(); draw(x,y,width,height,Color.white); @@ -797,6 +799,7 @@ public class Image implements Renderable { * @param height The height to render the image at * @param filter The color to filter with while drawing */ + @Override public void draw(float x,float y,float width,float height,Color filter) { if (alpha != 1) { if (filter == null) {