Skip to content

Commit

Permalink
Update Node.java
Browse files Browse the repository at this point in the history
  • Loading branch information
rac021 authored May 10, 2017
1 parent b8e8884 commit b8c0aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/inra/yedgen/processor/entities/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ private String getKeyByURI(String target ) {
private String cleanQ ( String query ) {
return query == null ? null :
query.replaceAll("\n", " ")
.replaceAll("\t", " ")
.replaceAll("[\n\r]", "")
.replaceAll(" +", " ") ;

}
Expand Down

0 comments on commit b8c0aea

Please sign in to comment.