This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit 347f44a03eb2c2837b544513516b0f3ac96e569c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 18 09:32:29 2023 -0500 Sort members --- .../java/org/apache/commons/lang3/arch/Processor.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/arch/Processor.java b/src/main/java/org/apache/commons/lang3/arch/Processor.java index 8466944e8..675e1b3c2 100644 --- a/src/main/java/org/apache/commons/lang3/arch/Processor.java +++ b/src/main/java/org/apache/commons/lang3/arch/Processor.java @@ -224,15 +224,6 @@ public class Processor { return Type.PPC == type; } - /** - * Tests if {@link Processor} is type of x86. - * - * @return {@code true}, if {@link Processor} is {@link Type#X86}, else {@code false}. - */ - public boolean isX86() { - return Type.X86 == type; - } - /** * Tests if {@link Processor} is type of RISC-V. * @@ -243,6 +234,15 @@ public class Processor { return Type.RISC_V == type; } + /** + * Tests if {@link Processor} is type of x86. + * + * @return {@code true}, if {@link Processor} is {@link Type#X86}, else {@code false}. + */ + public boolean isX86() { + return Type.X86 == type; + } + @Override public String toString() { final StringBuilder builder = new StringBuilder();