Skip to content

Commit 0e91bea

Browse files
committed
Sort 1 method.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1695166 13f79535-47bb-0310-9956-ffa450edef68
1 parent 224d307 commit 0e91bea

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/main/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,15 @@ public void flush() throws IOException {
102102
}
103103
}
104104

105+
/**
106+
* Gets the target Appendable.
107+
*
108+
* @return the target Appendable.
109+
*/
110+
public Appendable getOut() {
111+
return this.out;
112+
}
113+
105114
/**
106115
* Prints the string as the next value on the line. The value will be escaped or encapsulated as needed.
107116
*
@@ -508,13 +517,4 @@ public void printRecords(final ResultSet resultSet) throws SQLException, IOExcep
508517
println();
509518
}
510519
}
511-
512-
/**
513-
* Gets the target Appendable.
514-
*
515-
* @return the target Appendable.
516-
*/
517-
public Appendable getOut() {
518-
return this.out;
519-
}
520520
}

0 commit comments

Comments
 (0)