Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit 3af4e1d

Browse files
committed
bump version number to 1.1
modified search to no longer escape quotes to allow for proper term searching Signed-off-by: Neal Ensor <[email protected]>
1 parent 2071cae commit 3af4e1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>gov.osti</groupId>
55
<artifactId>doecode</artifactId>
66
<packaging>war</packaging>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.1</version>
88
<name>DOE Code Web Application</name>
99
<url>http://maven.apache.org</url>
1010

src/main/java/gov/osti/search/SearchData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class SearchData implements Serializable {
2828
.setSerializationInclusion(Include.NON_NULL);
2929

3030
// set of special characters to be escaped before sending to SOLR
31-
protected static Pattern SPECIAL_REGEX_CHARS = Pattern.compile("[{}()\\[\\].+*?^$\\\\|\"]");
31+
protected static Pattern SPECIAL_REGEX_CHARS = Pattern.compile("[{}()\\[\\].+*?^$\\\\|]");
3232

3333
private String allFields = null;
3434
private String softwareTitle = null;

0 commit comments

Comments
 (0)