274275276277278279280281282283284
if (BARCODE_2OF5.equals(type)) { try { return new Std2of5Barcode(data, checksum); } catch (BarcodeException e) { logger.error("Wrong std2of5 data supplied", e); return null;
293294295296297298299300301302303