Used IntelliJ's amazing refactoring functions to change the argument ordering of...
authordswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 22 Jun 2009 15:50:08 +0000 (15:50 +0000)
committerdswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 22 Jun 2009 15:50:08 +0000 (15:50 +0000)
commitef3b5dc1c7cfaadeed6adc10d345c3d6ba3f8e0c
tree1b3bc3a4b96af84e60259a7a503b72113222c621
parentd71a862e30b2591c1e39332acf5c3d8391c5b582
Used IntelliJ's amazing refactoring functions to change the argument ordering of ByteMatrix. I want to standardize this across ZXing: the first component should always be horizontal and the second vertical, whether supplying an x, y point or a width, height pair. Also, we should always use x and y as variables with x being the horizontal component to avoid confusion.

git-svn-id: http://zxing.googlecode.com/svn/trunk@975 59b500cc-1b3d-0410-9834-0bbf25fbcc57
core/src/com/google/zxing/common/ByteMatrix.java
core/src/com/google/zxing/oned/AbstractUPCEANWriter.java
core/src/com/google/zxing/qrcode/QRCodeWriter.java
core/src/com/google/zxing/qrcode/encoder/MatrixUtil.java
core/src/com/google/zxing/qrcode/encoder/QRCode.java
core/test/src/com/google/zxing/qrcode/QRCodeWriterTestCase.java
core/test/src/com/google/zxing/qrcode/encoder/MaskUtilTestCase.java
core/test/src/com/google/zxing/qrcode/encoder/MatrixUtilTestCase.java
core/test/src/com/google/zxing/qrcode/encoder/QRCodeTestCase.java