Author: jflesch
Date: 2007-08-15 16:53:32 +0000 (Wed, 15 Aug 2007)
New Revision: 14700
Modified:
trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKBoardAttachment.java
Log:
Correct a typo
Modified:
trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKBoardAttachment.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKBoardAttachment.java
2007-08-15 16:49:02 UTC (rev 14699)
+++ trunk/apps/Thaw/src/thaw/plugins/miniFrost/frostKSK/KSKBoardAttachment.java
2007-08-15 16:53:32 UTC (rev 14700)
@@ -128,13 +128,12 @@
return null;
}
-
public static final char[] INVALID_CHARS = { '/', '\\', '?', '*', '<',
'>',
'\"', ':', '|', '#', '&' };
private void setBoardName(String name) {
if (name.startsWith("."))
- name = name + "_";
+ name = "_" + name;
for (int i = 0 ; i < INVALID_CHARS.length ; i++) {
name = name.replace(INVALID_CHARS[i], '_');