X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2FTextPointer.java;h=3dc7201bcbbd76a40c1e1d79cca50ba66909334e;hp=ddee3befeed9f4b57fc3ac568fb0b18646ed772c;hb=e56f9b775bd49c31e8efab7204bee699036942b3;hpb=03447008b8ee26a6463d2cd03005dc26464863db diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/TextPointer.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/TextPointer.java index ddee3be..3dc7201 100755 --- a/src/main/java/eu/svjatoslav/sixth/e3d/gui/TextPointer.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/gui/TextPointer.java @@ -1,5 +1,5 @@ /* - * Sixth 3D engine. Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License @@ -49,12 +49,8 @@ public class TextPointer implements Comparable { if (textPointer.row < row) return 1; - if (textPointer.column > column) - return -1; - if (textPointer.column < column) - return 1; + return Integer.compare(column, textPointer.column); - return 0; } public boolean isBetween(final TextPointer start, final TextPointer end) {