Skip to content

Commit c7e8f03

Browse files
committed
The declared exception EncoderException is not actually thrown by the method doEncoding(byte[]) from type QCodec, QCodec.java, line 132.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130415 13f79535-47bb-0310-9956-ffa450edef68
1 parent e57f11a commit c7e8f03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/codec/net/QCodec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
*
4343
* @author Apache Software Foundation
4444
* @since 1.3
45-
* @version $Id: QCodec.java,v 1.9 2004/08/27 17:18:17 ggregory Exp $
45+
* @version $Id: QCodec.java,v 1.10 2004/09/01 17:38:48 ggregory Exp $
4646
*/
4747
public class QCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
4848
/**
@@ -129,7 +129,7 @@ protected String getEncoding() {
129129
return "Q";
130130
}
131131

132-
protected byte[] doEncoding(byte[] bytes) throws EncoderException {
132+
protected byte[] doEncoding(byte[] bytes) {
133133
if (bytes == null) {
134134
return null;
135135
}

0 commit comments

Comments
 (0)