diff --git a/src/zutil/net/torrent/TorrentTracker.java b/src/zutil/net/torrent/TorrentTracker.java index cd77a9b..da42cbe 100644 --- a/src/zutil/net/torrent/TorrentTracker.java +++ b/src/zutil/net/torrent/TorrentTracker.java @@ -39,7 +39,7 @@ public class TorrentTracker { - private void update() throws IOException { + public void update() throws IOException { HttpClient request = HttpClient.GET(); request.setURL( trackerURL ); HttpHeaderParser response = request.send(); diff --git a/src/zutil/test/ImageProcessorTest.java b/src/zutil/test/ImageProcessorTest.java index cda581a..1bd2592 100644 --- a/src/zutil/test/ImageProcessorTest.java +++ b/src/zutil/test/ImageProcessorTest.java @@ -52,7 +52,7 @@ import zutil.image.filters.ResizeImage; import zutil.image.filters.SobelEdgeDetectionFilter; import zutil.image.filters.SpotLightFilter; -@SuppressWarnings("unused") +@SuppressWarnings({ "unused", "rawtypes" }) public class ImageProcessorTest implements ProgressListener{ private static String imgPath = "test.gif"; //private static String imgPath = "test2.jpg"; @@ -65,6 +65,7 @@ public class ImageProcessorTest implements ProgressListener{ new ImageProcessorTest(); } + @SuppressWarnings("unchecked") public ImageProcessorTest(){ JFrame frame = getJFrame(); BufferedImage img = null; diff --git a/src/zutil/test/upload_test.html b/src/zutil/test/upload_test.html index 7bb89ef..b890bb0 100644 --- a/src/zutil/test/upload_test.html +++ b/src/zutil/test/upload_test.html @@ -33,7 +33,7 @@
- +