You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by mp...@apache.org on 2003/01/18 17:39:51 UTC

cvs commit: jakarta-turbine-torque/src/java/org/apache/torque/util SqlExpression.java

mpoeschl    2003/01/18 08:39:51

  Modified:    src/java/org/apache/torque/util SqlExpression.java
  Log:
  Avoid unused local variables
  
  Revision  Changes    Path
  1.21      +1 -2      jakarta-turbine-torque/src/java/org/apache/torque/util/SqlExpression.java
  
  Index: SqlExpression.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/java/org/apache/torque/util/SqlExpression.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- SqlExpression.java	12 Dec 2002 14:53:28 -0000	1.20
  +++ SqlExpression.java	18 Jan 2003 16:39:51 -0000	1.21
  @@ -398,7 +398,6 @@
           // use = (equals).  Wildcards can be escaped by prepending
           // them with \ (backslash).
           String equalsOrLike = " = ";
  -        String parsedCriteria = null;
           int position = 0;
           StringBuffer sb = new StringBuffer();
           while (position < criteria.length())