We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf9331 commit 8a27841Copy full SHA for 8a27841
src/main/java/org/fusesource/jansi/Ansi.java
@@ -623,6 +623,7 @@ public Ansi cursorLeft(final int x) {
623
* @param x the number of characters to move horizontally
624
* @param y the number of lines to move vertically
625
* @return this Ansi instance
626
+ * @since 2.2
627
*/
628
public Ansi cursorMove(final int x, final int y) {
629
return cursorRight(x).cursorDown(y);
@@ -812,6 +813,7 @@ public Ansi format(String pattern, Object... args) {
812
813
*
814
* @param fun the function to apply
815
816
817
818
public Ansi apply(Consumer fun) {
819
fun.apply(this);
0 commit comments