Changeset 3649
- Timestamp:
- Aug 10, 2007, 9:10:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Formula.java
r3622 r3649 24 24 package net.sf.basedb.core; 25 25 26 import java.util.ArrayList; 26 27 import java.util.Collections; 27 28 import java.util.HashMap; … … 351 352 public List<String> getFormulas() 352 353 { 353 return Collections.unmodifiableList( getData().getFormulas());354 return Collections.unmodifiableList(new ArrayList<String>(getData().getFormulas())); 354 355 } 355 356
Note: See TracChangeset
for help on using the changeset viewer.