Skip to content

Commit

Permalink
less unneeded trimming
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jan 21, 2016
1 parent f920d8d commit 9b160d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/aufdemrand/denizencore/objects/aH.java
Expand Up @@ -76,7 +76,7 @@ public static class Argument {
// Construction
public Argument(String string) {
raw_value = string;
string = string.trim();
string = string;

int first_colon = string.indexOf(':');
int first_space = string.indexOf(' ');
Expand Down Expand Up @@ -310,7 +310,7 @@ public String toString() {
public static List<Argument> interpret(List<String> args) {
List<Argument> arg_list = new ArrayList<Argument>();
for (String string : args) {
arg_list.add(new Argument(string.trim()));
arg_list.add(new Argument(string));
}
return arg_list;
}
Expand Down

0 comments on commit 9b160d3

Please sign in to comment.