--- old/jdk/src/jdk.jline/share/classes/jdk/internal/jline/console/CursorBuffer.java 2015-06-18 03:05:59.841207813 -0700 +++ new/jdk/src/jdk.jline/share/classes/jdk/internal/jline/console/CursorBuffer.java 2015-06-18 03:05:59.687206698 -0700 @@ -6,9 +6,9 @@ * * http://www.opensource.org/licenses/bsd-license.php */ -package jline.console; +package jdk.internal.jline.console; -import static jline.internal.Preconditions.checkNotNull; +import static jdk.internal.jline.internal.Preconditions.checkNotNull; /** * A holder for a {@link StringBuilder} that also contains the current cursor position. @@ -24,13 +24,13 @@ public int cursor = 0; public final StringBuilder buffer = new StringBuilder(); - + public CursorBuffer copy () { CursorBuffer that = new CursorBuffer(); that.overTyping = this.overTyping; that.cursor = this.cursor; that.buffer.append (this.toString()); - + return that; }