Changeset 1346 for trunk/universe/kauri-template/src/main/java/org/kauriproject/template/el/Expression.java
- Timestamp:
- 2009-07-02 15:06:52 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/universe/kauri-template/src/main/java/org/kauriproject/template/el/Expression.java
r999 r1346 51 51 } 52 52 53 /** 54 * Returns null if value is not recongized. 55 */ 53 56 public static ExpressionParser fromString(String value) { 54 57 if (value.equals(EL.id)) … … 57 60 return GROOVY; 58 61 else 59 return null; // throw RuntimeException ?62 return null; 60 63 } 61 64 }
Note: See TracChangeset
for help on using the changeset viewer.