mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 03:15:33 +02:00
fixed out of bounds error on save
This commit is contained in:
parent
faa9f5f147
commit
ebd56a3b69
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ class SettingsStore implements ISettingsStore {
|
|||
m=child;
|
||||
}
|
||||
// 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
|
||||
if(i>0)
|
||||
buffer.append(",");
|
||||
|
|
Loading…
Add table
Reference in a new issue