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:
srowen 2008-10-28 15:59:51 +00:00
parent db3c669847
commit 78da6447b0

View file

@ -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;
}