Skip to content

Commit 8a27841

Browse files
committed
Add @SInCE tags on new methods
1 parent faf9331 commit 8a27841

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/org/fusesource/jansi/Ansi.java

+2
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ public Ansi cursorLeft(final int x) {
623623
* @param x the number of characters to move horizontally
624624
* @param y the number of lines to move vertically
625625
* @return this Ansi instance
626+
* @since 2.2
626627
*/
627628
public Ansi cursorMove(final int x, final int y) {
628629
return cursorRight(x).cursorDown(y);
@@ -812,6 +813,7 @@ public Ansi format(String pattern, Object... args) {
812813
*
813814
* @param fun the function to apply
814815
* @return this Ansi instance
816+
* @since 2.2
815817
*/
816818
public Ansi apply(Consumer fun) {
817819
fun.apply(this);

0 commit comments

Comments
 (0)