Fixed recently introduced bug: expressions were not logged because preference stores were not initialized properly.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1124 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-07-31 07:01:44 +00:00
parent a4ec25bc8a
commit 7bb6674e5b

View File

@ -416,13 +416,6 @@ public abstract class ProjectManager {
* @param ps
*/
static protected void preparePreferenceStore(PreferenceStore ps) {
ps.put("expressions", new TopList(s_expressionHistoryMax));
ps.put("scripting.expressions", new TopList(s_expressionHistoryMax));
}
}