mirror of
https://github.com/zxing/zxing.git
synced 2025-01-13 04:07:27 -08:00
Inner class elements now not private since it is pointless and confuses Proguard
git-svn-id: https://zxing.googlecode.com/svn/trunk@647 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
db3c669847
commit
78da6447b0
|
@ -209,10 +209,10 @@ public final class Version {
|
|||
* parameters is used consecutively in the QR code version's format.</p>
|
||||
*/
|
||||
static final class ECB {
|
||||
private final int count;
|
||||
private final int dataCodewords;
|
||||
final int count;
|
||||
final int dataCodewords;
|
||||
|
||||
private ECB(int count, int dataCodewords) {
|
||||
ECB(int count, int dataCodewords) {
|
||||
this.count = count;
|
||||
this.dataCodewords = dataCodewords;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue