Skip to content

Commit 323f77f

Browse files
committed
[RELEASE] iText 8.0.2
2 parents 0fe4896 + eba608f commit 323f77f

File tree

710 files changed

+20090
-2113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

710 files changed

+20090
-2113
lines changed

barcodes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.itextpdf</groupId>
66
<artifactId>root</artifactId>
7-
<version>8.0.1</version>
7+
<version>8.0.2</version>
88
</parent>
99
<artifactId>barcodes</artifactId>
1010
<name>iText - barcodes</name>

barcodes/src/main/java/com/itextpdf/barcodes/exceptions/WriterException.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ This file is part of the iText (R) project.
2727
/**
2828
* A base class which covers the range of exceptions which may occur when encoding a barcode using
2929
* the Writer framework.
30-
*
31-
* @author [email protected] (Daniel Switkin)
3230
*/
3331
public final class WriterException extends ITextException {
3432

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitArray.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ This file is part of the iText (R) project.
2525

2626
/**
2727
* A simple, fast array of bits, represented compactly by an array of ints internally.
28-
*
29-
* @author Sean Owen
3028
*/
3129
final class BitArray {
3230

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitMatrix.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ This file is part of the iText (R) project.
3333
* <p>
3434
* The ordering of bits is row-major. Within each int, the least significant bits are used first,
3535
* meaning they represent lower x values. This is compatible with BitArray's implementation.
36-
*
37-
* @author Sean Owen
38-
* @author [email protected] (Daniel Switkin)
3936
*/
4037
final class BitMatrix {
4138

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitVector.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ This file is part of the iText (R) project.
2626
* JAVAPORT: This should be combined with BitArray in the future, although that class is not yet
2727
* dynamically resizeable. This implementation is reasonable but there is a lot of function calling
2828
* in loops I'd like to get rid of.
29-
*
30-
* @author [email protected] (Satoru Takabayashi) - creator
31-
* @author [email protected] (Daniel Switkin) - ported from C++
3229
*/
3330
final class BitVector {
3431

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/ByteArray.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ This file is part of the iText (R) project.
2424

2525
/**
2626
* This class implements an array of unsigned bytes.
27-
*
28-
* @author [email protected] (Daniel Switkin)
2927
*/
3028
final class ByteArray {
3129

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/ByteMatrix.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ This file is part of the iText (R) project.
2929
*
3030
* JAVAPORT: The original code was a 2D array of ints, but since it only ever gets assigned
3131
* -1, 0, and 1, I'm going to use less memory and go with bytes.
32-
*
33-
* @author [email protected] (Daniel Switkin)
3432
*/
3533
public final class ByteMatrix {
3634

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/CharacterSetECI.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ This file is part of the iText (R) project.
2828
/**
2929
* Encapsulates a Character Set ECI, according to "Extended Channel Interpretations" 5.3.1.1
3030
* of ISO 18004.
31-
*
32-
* @author Sean Owen
3331
*/
3432
final class CharacterSetECI {
3533

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/EncodeHintType.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ This file is part of the iText (R) project.
2424

2525
/**
2626
* These are a set of hints that you may pass to Writers to specify their behavior.
27-
*
28-
* @author [email protected] (Daniel Switkin)
2927
*/
3028
public final class EncodeHintType {
3129

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/Encoder.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ This file is part of the iText (R) project.
2929
import java.util.List;
3030
import java.util.Map;
3131

32-
/**
33-
* @author [email protected] (Satoru Takabayashi) - creator
34-
* @author [email protected] (Daniel Switkin) - ported from C++
35-
*/
3632
final class Encoder {
3733

3834
// The original table is defined in the table 5 of JISX0510:2004 (p.19).

0 commit comments

Comments
 (0)