[#4746] Javadoc fix

This commit is contained in:
lukaseder 2015-12-17 16:24:57 +01:00
parent 0e23b09087
commit d428250994

View File

@ -193,7 +193,7 @@ public final class CSVFormat {
}
/**
* The string to be used for <code>null</code> values, defaulting to the
* The string to be used for <code>""</code> values, defaulting to the
* empty string.
* <p>
* <table border="1">
@ -205,10 +205,6 @@ public final class CSVFormat {
* <td>Using <code>"\"\""</code></td>
* <td><code>a,"",c</code></td>
* </tr>
* <tr>
* <td>Using <code>"{null}"</code></td>
* <td><code>a,{null},c</code></td>
* </tr>
* </table>
*/
public CSVFormat emptyString(String newEmptyString) {
@ -222,7 +218,7 @@ public final class CSVFormat {
}
/**
* The string to be used for <code>null</code> values, defaulting to the
* The string to be used for <code>""</code> values, defaulting to the
* empty string.
* <p>
* <table border="1">
@ -234,10 +230,6 @@ public final class CSVFormat {
* <td>Using <code>"\"\""</code></td>
* <td><code>a,"",c</code></td>
* </tr>
* <tr>
* <td>Using <code>"{null}"</code></td>
* <td><code>a,{null},c</code></td>
* </tr>
* </table>
*/
public String emptyString() {