1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 18:15:23 +02:00

fixed out of bounds error on save

This commit is contained in:
Michael Scharf 2006-12-12 17:58:36 +00:00
parent d380cda26a
commit 196c0ad063

View file

@ -98,7 +98,7 @@ class SettingsStore implements ISettingsStore {
m=child; m=child;
} }
// use the last element in path as key of the child memento // use the last element in path as key of the child memento
m.putString(path[path.length], (String) fMap.get(key)); m.putString(path[path.length-1], (String) fMap.get(key));
// construct the string for the keys // construct the string for the keys
if(i>0) if(i>0)
buffer.append(","); buffer.append(",");