Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbateman2006-10-20 23:43:25 +0000
committercbateman2006-10-20 23:43:25 +0000
commit676c1fe37e7743b8edcb79b521e6f965f05d0ce8 (patch)
tree6436497146fa9bfb32d87b1455501806770db554
parentc99a0f82aa6aa4795d8418402f90cc3dba8d9587 (diff)
downloadwebtools.jsf-20061102.tar.gz
webtools.jsf-20061102.tar.xz
webtools.jsf-20061102.zip
Changes for minor issues found during EL validation unit testing. Corrected TypeConstant for big decimal's and also the type signature delegate for some built symbols.v20061102
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/core/internal/types/TypeConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/core/internal/types/TypeConstants.java b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/core/internal/types/TypeConstants.java
index 3d91533a1..597c0f699 100644
--- a/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/core/internal/types/TypeConstants.java
+++ b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/core/internal/types/TypeConstants.java
@@ -38,7 +38,7 @@ public class TypeConstants
/**
* big double
*/
- public final static String TYPE_BIG_DOUBLE = "Ljava.math.BigDouble;";
+ public final static String TYPE_BIG_DOUBLE = "Ljava.math.BigDecimal;";
/* boxed types */
/**

Back to the top