Changeset 4892
- Timestamp:
- Apr 8, 2009, 10:05:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Path.java
r4889 r4892 56 56 {@value} 57 57 */ 58 public static final String INVALID_CHARACTERS = "~\\/:;*?<>| ";58 public static final String INVALID_CHARACTERS = "~\\/:;*?<>|\""; 59 59 60 60 /** 61 61 A regexp checking for invalid characters. 62 62 */ 63 private static final Pattern invalid = Pattern.compile("[\\~\\\\\\/\\:\\;\\*\\?\\<\\>\\| ]+");63 private static final Pattern invalid = Pattern.compile("[\\~\\\\\\/\\:\\;\\*\\?\\<\\>\\|\\\"]+"); 64 64 65 65 /**
Note: See TracChangeset
for help on using the changeset viewer.