Skip to content

Commit ee113eb

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130350 13f79535-47bb-0310-9956-ffa450edef68
1 parent c10a2d7 commit ee113eb

2 files changed

Lines changed: 19 additions & 24 deletions

File tree

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

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
/*
22
* Copyright 2001-2004 The Apache Software Foundation.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5+
* the License. You may obtain a copy of the License at
76
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
7+
* http://www.apache.org/licenses/LICENSE-2.0
98
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
9+
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10+
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11+
* specific language governing permissions and limitations under the License.
12+
*/
1613

1714
package org.apache.commons.codec.net;
1815

@@ -40,7 +37,7 @@
4037
*
4138
* @author Apache Software Foundation
4239
* @since 1.3
43-
* @version $Id: BCodec.java,v 1.1 2004/03/29 07:59:57 ggregory Exp $
40+
* @version $Id: BCodec.java,v 1.2 2004/04/09 21:45:47 ggregory Exp $
4441
*/
4542
public class BCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
4643
/**
@@ -62,7 +59,7 @@ public BCodec() {
6259
* the default string charset to use.
6360
*
6461
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
65-
* encoding names</a>
62+
* encoding names </a>
6663
*/
6764
public BCodec(final String charset) {
6865
super();

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

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
/*
22
* Copyright 2001-2004 The Apache Software Foundation.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5+
* the License. You may obtain a copy of the License at
76
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
7+
* http://www.apache.org/licenses/LICENSE-2.0
98
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
9+
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10+
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11+
* specific language governing permissions and limitations under the License.
12+
*/
1613

1714
package org.apache.commons.codec.net;
1815

1916
import java.io.UnsupportedEncodingException;
2017
import java.util.BitSet;
18+
2119
import org.apache.commons.codec.DecoderException;
2220
import org.apache.commons.codec.EncoderException;
2321
import org.apache.commons.codec.StringDecoder;
@@ -41,7 +39,7 @@
4139
*
4240
* @author Apache Software Foundation
4341
* @since 1.3
44-
* @version $Id: QCodec.java,v 1.1 2004/03/29 07:59:57 ggregory Exp $
42+
* @version $Id: QCodec.java,v 1.2 2004/04/09 21:46:27 ggregory Exp $
4543
*/
4644
public class QCodec extends RFC1522Codec implements StringEncoder, StringDecoder {
4745
/**
@@ -117,7 +115,7 @@ public QCodec() {
117115
* the default string charset to use.
118116
*
119117
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
120-
* encoding names</a>
118+
* encoding names </a>
121119
*/
122120
public QCodec(final String charset) {
123121
super();

0 commit comments

Comments
 (0)