Modify ↓
#1632 closed defect (fixed)
sanatizing of bookmarks when saving inoperatable
Reported by: | anonymous | Owned by: | framm |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | Core | Version: | tested |
Keywords: | Cc: |
Description
Preferences.java:297
for (Bookmark b : bookmarks) {
b.name.replace(',', '_');
out.print(b.name+",");
Since Strings are immutable, the replace() function returns a new String value, which is being ignored here...
Attachments (0)
Change History (2)
comment:1 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 16 years ago
Version: | → release |
---|
Note:
See TracTickets
for help on using tickets.
Fixed in r1025.