From 1375e931d7c7e6de8b297378fc296029d476d7e8 Mon Sep 17 00:00:00 2001 From: pascalschumacher Date: Thu, 4 May 2017 13:01:38 +0200 Subject: [PATCH] StrBuilder: remove commented-out code --- .../apache/commons/lang3/text/StrBuilder.java | 31 ------------------- 1 file changed, 31 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/text/StrBuilder.java b/src/main/java/org/apache/commons/lang3/text/StrBuilder.java index e7401f353..cb0bf9d38 100644 --- a/src/main/java/org/apache/commons/lang3/text/StrBuilder.java +++ b/src/main/java/org/apache/commons/lang3/text/StrBuilder.java @@ -2757,37 +2757,6 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build } } - //----------------------------------------------------------------------- -// /** -// * Gets a String version of the string builder by calling the internal -// * constructor of String by reflection. -// *

-// * WARNING: You must not use the StrBuilder after calling this method -// * as the buffer is now shared with the String object. To ensure this, -// * the internal character array is set to null, so you will get -// * NullPointerExceptions on all method calls. -// * -// * @return the builder as a String -// */ -// public String toSharedString() { -// try { -// Constructor con = String.class.getDeclaredConstructor( -// new Class[] {int.class, int.class, char[].class}); -// con.setAccessible(true); -// char[] buffer = buf; -// buf = null; -// size = -1; -// nullText = null; -// return (String) con.newInstance( -// new Object[] {Integer.valueOf(0), Integer.valueOf(size), buffer}); -// -// } catch (Exception ex) { -// ex.printStackTrace(); -// throw new UnsupportedOperationException("StrBuilder.toSharedString is unsupported: " + ex.getMessage()); -// } -// } - - //----------------------------------------------------------------------- /** * Checks the contents of this builder against another to see if they * contain the same character content ignoring case.