Modified:
/trunk/src/ca/sqlpower/matchmaker/TableIndex.java
=======================================
--- /trunk/src/ca/sqlpower/matchmaker/TableIndex.java Mon Dec 6 14:15:48
2010
+++ /trunk/src/ca/sqlpower/matchmaker/TableIndex.java Tue Dec 7 08:19:39
2010
@@ -232,7 +232,9 @@
@Accessor
public List<String> getColNames() {
- return Collections.unmodifiableList(colNames);
+ List<String> retColNames = new ArrayList<String>();
+ retColNames.addAll(colNames);
+ return Collections.unmodifiableList(retColNames);
}
/**