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 8757d91bc3e5fa6a4a01bf3c16e39e2a75f28e72 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue Sep 3 14:08:00 2019 -0400 Sort members. --- .../apache/commons/lang3/exception/ExceptionUtils.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index e9761cd..be5a7a2 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -40,14 +40,6 @@ import org.apache.commons.lang3.Validate; public class ExceptionUtils { /** - * <p>Used when printing stack frames to denote the start of a - * wrapped exception.</p> - * - * <p>Package private for accessibility by test suite.</p> - */ - static final String WRAPPED_MARKER = " [wrapped] "; - - /** * <p>The names of methods commonly used to access a wrapped exception.</p> */ // TODO: Remove in Lang 4.0 @@ -66,6 +58,14 @@ public class ExceptionUtils { "getThrowable", }; + /** + * <p>Used when printing stack frames to denote the start of a + * wrapped exception.</p> + * + * <p>Package private for accessibility by test suite.</p> + */ + static final String WRAPPED_MARKER = " [wrapped] "; + //----------------------------------------------------------------------- /** * <p>Introspects the <code>Throwable</code> to obtain the cause.</p>