From bf089524b1b295f4f04f1fb28eaade638b8f99d7 Mon Sep 17 00:00:00 2001 From: jfrijters Date: Fri, 31 Jul 2009 09:56:48 +0000 Subject: [PATCH] Removed @Deprecated from methods that aren't deprecated in JDK. --- openjdk/java/util/zip/Deflater.java | 2 -- openjdk/java/util/zip/Inflater.java | 2 -- 2 files changed, 4 deletions(-) diff --git a/openjdk/java/util/zip/Deflater.java b/openjdk/java/util/zip/Deflater.java index 55f7aafa..b4a8b40b 100644 --- a/openjdk/java/util/zip/Deflater.java +++ b/openjdk/java/util/zip/Deflater.java @@ -241,7 +241,6 @@ public class Deflater /** * Gets the number of input bytes processed so far. */ - @Deprecated public int getTotalIn() { return (int) engine.getTotalIn(); @@ -259,7 +258,6 @@ public class Deflater /** * Gets the number of output bytes so far. */ - @Deprecated public int getTotalOut() { return (int) totalOut; diff --git a/openjdk/java/util/zip/Inflater.java b/openjdk/java/util/zip/Inflater.java index c3f032d8..8a5e949e 100644 --- a/openjdk/java/util/zip/Inflater.java +++ b/openjdk/java/util/zip/Inflater.java @@ -246,7 +246,6 @@ public class Inflater * Gets the total number of processed compressed input bytes. * @return the total number of bytes of processed input bytes. */ - @Deprecated public int getTotalIn() { return (int) (totalIn - getRemaining()); @@ -266,7 +265,6 @@ public class Inflater * Gets the total number of output bytes returned by inflate(). * @return the total number of output bytes. */ - @Deprecated public int getTotalOut() { return (int) totalOut;