Incorrect comment

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1458500 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
index 7e42f61..89b64d0 100644
--- a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
+++ b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
@@ -64,7 +64,7 @@
                 if (off + 1 >= endOffset) {
                     throw new IOException("Invalid quoted printable encoding; truncated escape sequence");
                 }
-                // convert the two bytes back from hex.
+
                 byte b1 = data[off++];
                 byte b2 = data[off++];