Do we still need to keep this; do all of the current clients handle this ok?
// FIXME remove this code, the new behaviour should be handled
by all clients
nodeConfig.register("ignoreTooManyPathComponents", false,
sortOrder++, true, false,
"NodeClientCore.ignoreTooManyPathComponents",
"NodeClientCore.ignoreTooManyPathComponentsLong", new BooleanCallback() {
public boolean get() {
return
ignoreTooManyPathComponents;
}
public void set(boolean val) throws
InvalidConfigValueException {
synchronized(NodeClientCore.this) {
ignoreTooManyPathComponents = val;
}
}
});
ignoreTooManyPathComponents =
nodeConfig.getBoolean("ignoreTooManyPathComponents");