Merge pull request #368 from zxing/revert-272-master

Revert "minSize from provided sizes"
This commit is contained in:
Sean Owen 2015-05-03 20:48:03 +01:00
commit 4907c54003

View file

@ -60,7 +60,7 @@ public final class DataMatrixWriter implements Writer {
// Try to get force shape & min / max size
SymbolShapeHint shape = SymbolShapeHint.FORCE_NONE;
Dimension minSize = new Dimension(width, height);
Dimension minSize = null;
Dimension maxSize = null;
if (hints != null) {
SymbolShapeHint requestedShape = (SymbolShapeHint) hints.get(EncodeHintType.DATA_MATRIX_SHAPE);