Repository: commons-lang Updated Branches: refs/heads/master 63374a181 -> 2b15e1f43
Format nit. Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/2b15e1f4 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/2b15e1f4 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/2b15e1f4 Branch: refs/heads/master Commit: 2b15e1f43de16d204a28f72a530abcc24208f4d5 Parents: 63374a1 Author: ggregory <ggreg...@apache.org> Authored: Wed Feb 24 13:44:31 2016 -0800 Committer: ggregory <ggreg...@apache.org> Committed: Wed Feb 24 13:44:31 2016 -0800 ---------------------------------------------------------------------- src/main/java/org/apache/commons/lang3/math/NumberUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/2b15e1f4/src/main/java/org/apache/commons/lang3/math/NumberUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java index ead5277..01f276b 100644 --- a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java +++ b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java @@ -1575,6 +1575,6 @@ public class NumberUtils { * @since 3.4 */ public static int compare(byte x, byte y) { - return x-y; + return x - y; } }