Trivial move of a commented method to better spot -- won't compile where it is now

git-svn-id: https://zxing.googlecode.com/svn/trunk@134 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-01-02 23:11:41 +00:00
parent b3ecc20522
commit 80b3dd3632
2 changed files with 12 additions and 12 deletions

View file

@ -115,16 +115,4 @@ public final class BitMatrix {
return bits; return bits;
} }
/*
public BufferedImage toBufferedImage() {
BufferedImage image = new BufferedImage(dimension, dimension, BufferedImage.TYPE_BYTE_BINARY);
for (int j = 0; j < dimension; j++) {
for (int i = 0; i < dimension; i++) {
image.setRGB(j, i, get(i, j) ? 0x00000000 : 0x00FFFFFF);
}
}
return image;
}
*/
} }

View file

@ -72,4 +72,16 @@ public final class CommandLineRunner {
} }
} }
/*
public BufferedImage toBufferedImage() {
BufferedImage image = new BufferedImage(dimension, dimension, BufferedImage.TYPE_BYTE_BINARY);
for (int j = 0; j < dimension; j++) {
for (int i = 0; i < dimension; i++) {
image.setRGB(j, i, get(i, j) ? 0x00000000 : 0x00FFFFFF);
}
}
return image;
}
*/
} }