Why is Java's Preferences API putting slashes before capital letters in value names? Is there any way to get around this or disable this behavior?
prefs = Preferences.userRoot().node("app");
...
prefs.putInt("WindowWidth", mainFrame.getWidth());
...
Thanks