Subversion Repository Public Repository

litesoft

Diff Revisions 801 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/ui/scanner/QuantityScannerFieldsProcessor.java

Diff revisions: vs.
  @@ -2,7 +2,6 @@
2 2 package org.litesoft.ui.scanner;
3 3
4 4 import org.litesoft.core.typeutils.*;
5 - import org.litesoft.core.util.*;
6 5
7 6 public class QuantityScannerFieldsProcessor implements QuantityScannerFieldsLogic
8 7 {
  @@ -43,7 +42,7 @@
43 42 return;
44 43 }
45 44
46 - if ( UtilsCommon.isNumeric( pValue, pValue.length() ) && (pValue.length() > 3) )
45 + if ( Strings.isNumeric( pValue, pValue.length() ) && (pValue.length() > 3) )
47 46 {
48 47 mReactor.incrementOrSetQuantity( pValue, mAdding, mQuantity );
49 48 return;