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:
parent
d380cda26a
commit
196c0ad063
1 changed files with 1 additions and 1 deletions
|
@ -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(",");
|
||||||
|
|
Loading…
Add table
Reference in a new issue