mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
20.15.2013 2f4e15aa6745c338b1a0193eb352d658e980b9ca
Fix OPENDJ-1152: Provide the ability to debug leaked pooled connections

* fix build break on JDK6.
1 files modified
4 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/StaticUtils.java 4 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/StaticUtils.java
@@ -2206,11 +2206,11 @@
            final StringBuilder builder = new StringBuilder("OPENDJ SDK: ");
            builder.append(msg);
            if (stackTrace != null) {
                builder.append(System.lineSeparator());
                builder.append(EOL);
                for (StackTraceElement e : stackTrace) {
                    builder.append("\tat ");
                    builder.append(String.valueOf(e));
                    builder.append(System.lineSeparator());
                    builder.append(EOL);
                }
            }
            if (DEBUG_TO_STDERR) {