Skip to content

Commit 04d863b

Browse files
committed
Fix license typo:
Products derived from this software may not be called "Apache", * "Apache" nor may "Apache" appear in their name [...] There is a double word in there. This LICENSE FILE is from the main Jakata Commons page. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130278 13f79535-47bb-0310-9956-ffa450edef68
1 parent 768be19 commit 04d863b

30 files changed

Lines changed: 158 additions & 145 deletions

src/java/org/apache/commons/codec/BinaryDecoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -62,7 +62,7 @@
6262
*
6363
* @author Tim O'Brien
6464
* @author Gary Gregory
65-
* @version $Id: BinaryDecoder.java,v 1.7 2003/11/13 06:48:31 ggregory Exp $
65+
* @version $Id: BinaryDecoder.java,v 1.8 2004/01/02 07:01:47 ggregory Exp $
6666
*/
6767
public interface BinaryDecoder extends Decoder {
6868

src/java/org/apache/commons/codec/BinaryEncoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -62,7 +62,7 @@
6262
*
6363
* @author Tim O'Brien
6464
* @author Gary Gregory
65-
* @version $Id: BinaryEncoder.java,v 1.7 2003/11/13 06:48:31 ggregory Exp $
65+
* @version $Id: BinaryEncoder.java,v 1.8 2004/01/02 07:01:47 ggregory Exp $
6666
*/
6767
public interface BinaryEncoder extends Encoder {
6868

src/java/org/apache/commons/codec/Decoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -69,7 +69,7 @@
6969
*
7070
* @author Tim O'Brien
7171
* @author Gary Gregory
72-
* @version $Id: Decoder.java,v 1.6 2003/10/05 21:45:48 tobrien Exp $
72+
* @version $Id: Decoder.java,v 1.7 2004/01/02 07:01:47 ggregory Exp $
7373
*/
7474
public interface Decoder {
7575

src/java/org/apache/commons/codec/DecoderException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -62,7 +62,7 @@
6262
*
6363
* @author Tim O'Brien
6464
* @author Gary Gregory
65-
* @version $Id: DecoderException.java,v 1.6 2003/10/05 21:45:48 tobrien Exp $
65+
* @version $Id: DecoderException.java,v 1.7 2004/01/02 07:01:47 ggregory Exp $
6666
*/
6767
public class DecoderException extends Exception {
6868

src/java/org/apache/commons/codec/Encoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -65,7 +65,7 @@
6565
*
6666
* @author Tim O'Brien
6767
* @author Gary Gregory
68-
* @version $Id: Encoder.java,v 1.7 2003/10/05 21:45:48 tobrien Exp $
68+
* @version $Id: Encoder.java,v 1.8 2004/01/02 07:01:47 ggregory Exp $
6969
*/
7070
public interface Encoder {
7171

src/java/org/apache/commons/codec/EncoderException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -65,7 +65,7 @@
6565
*
6666
* @author Tim O'Brien
6767
* @author Gary Gregory
68-
* @version $Id: EncoderException.java,v 1.7 2003/10/05 21:45:48 tobrien Exp $
68+
* @version $Id: EncoderException.java,v 1.8 2004/01/02 07:01:47 ggregory Exp $
6969
*/
7070
public class EncoderException extends Exception {
7171

src/java/org/apache/commons/codec/StringDecoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -62,7 +62,7 @@
6262
*
6363
* @author Tim O'Brien
6464
* @author Gary Gregory
65-
* @version $Id: StringDecoder.java,v 1.6 2003/10/05 21:45:48 tobrien Exp $
65+
* @version $Id: StringDecoder.java,v 1.7 2004/01/02 07:01:47 ggregory Exp $
6666
*/
6767
public interface StringDecoder extends Decoder {
6868

src/java/org/apache/commons/codec/StringEncoder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -62,7 +62,7 @@
6262
*
6363
* @author Tim O'Brien
6464
* @author Gary Gregory
65-
* @version $Id: StringEncoder.java,v 1.6 2003/10/05 21:45:48 tobrien Exp $
65+
* @version $Id: StringEncoder.java,v 1.7 2004/01/02 07:01:47 ggregory Exp $
6666
*/
6767
public interface StringEncoder extends Encoder {
6868

src/java/org/apache/commons/codec/StringEncoderComparator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -70,7 +70,7 @@
7070
*
7171
* @author Tim O'Brien
7272
* @author Gary Gregory
73-
* @version $Id: StringEncoderComparator.java,v 1.10 2003/11/24 00:11:56 ggregory Exp $
73+
* @version $Id: StringEncoderComparator.java,v 1.11 2004/01/02 07:01:47 ggregory Exp $
7474
*/
7575
public class StringEncoderComparator implements Comparator {
7676

src/java/org/apache/commons/codec/binary/Base64.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* The Apache Software License, Version 1.1
55
*
6-
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
6+
* Copyright (c) 2001-2004 The Apache Software Foundation. All rights
77
* reserved.
88
*
99
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
3030
* from this software without prior written permission. For written
3131
* permission, please contact apache@apache.org.
3232
*
33-
* 5. Products derived from this software may not be called "Apache",
34-
* "Apache" nor may "Apache" appear in their name without prior
33+
* 5. Products derived from this software may not be called "Apache"
34+
* nor may "Apache" appear in their name without prior
3535
* written permission of the Apache Software Foundation.
3636
*
3737
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
@@ -73,7 +73,7 @@
7373
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
7474
* @author Tim O'Brien
7575
* @since 1.0-dev
76-
* @version $Id: Base64.java,v 1.14 2003/11/24 00:11:56 ggregory Exp $
76+
* @version $Id: Base64.java,v 1.15 2004/01/02 07:01:47 ggregory Exp $
7777
*/
7878
public class Base64 implements BinaryEncoder, BinaryDecoder {
7979

0 commit comments

Comments
 (0)