You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2009/12/21 07:03:33 UTC

svn commit: r892703 - /ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java

Author: doogie
Date: Mon Dec 21 06:03:33 2009
New Revision: 892703

URL: http://svn.apache.org/viewvc?rev=892703&view=rev
Log:
StaticValues are constant.

Modified:
    ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java

Modified: ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java?rev=892703&r1=892702&r2=892703&view=diff
==============================================================================
--- ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java (original)
+++ ofbiz/trunk/framework/sql/src/org/ofbiz/sql/StaticValue.java Mon Dec 21 06:03:33 2009
@@ -18,6 +18,6 @@
  */
 package org.ofbiz.sql;
 
-public abstract class StaticValue extends Value {
+public abstract class StaticValue extends ConstantValue {
     public abstract String getDefaultName();
 }