Skip to content

Commit

Permalink
#380: back out perf-killing andNot overloads. Not needed, since andNo…
Browse files Browse the repository at this point in the history
…t is static, not inline.

Signed-off-by: Stuart Halloway <stu@Stuart-Halloways-MacBook-Air.local>
  • Loading branch information
Aaron Bedra and Stuart Halloway authored and Stuart Halloway committed Feb 25, 2011
1 parent b5fc9ff commit ad8e72d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/jvm/clojure/lang/Numbers.java
Original file line number Diff line number Diff line change
Expand Up @@ -1641,19 +1641,6 @@ static public Number and(long x, Object y){
return and((Object)x, y);
}

static public long andNot(long x, long y){
return x & ~y;
}

static public Number andNot(Object x, long y){
return andNot((Number)x, (Number)y);
}

static public Number andNot(long x, Object y){
return andNot((Number)x, (Number)y);
}


//static public int or(int x, int y){
// return x | y;
//}
Expand Down

0 comments on commit ad8e72d

Please sign in to comment.