We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
該当コードはこちらです。 https://github.com/orangesignal/orangesignal-csv/blob/master/src/main/java/com/orangesignal/csv/CsvWriter.java#L160
ここは value == null とするよりも、 value == null || "".equals(value) とした方がよいのではないでしょうか?
CsvConfig#setNullString で値がないことを表す文字列が設定設定できますが、 文字列の場合、空白も値がないという事にはならないでしょうか?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
該当コードはこちらです。
https://github.com/orangesignal/orangesignal-csv/blob/master/src/main/java/com/orangesignal/csv/CsvWriter.java#L160
ここは value == null とするよりも、
value == null || "".equals(value) とした方がよいのではないでしょうか?
CsvConfig#setNullString で値がないことを表す文字列が設定設定できますが、
文字列の場合、空白も値がないという事にはならないでしょうか?
The text was updated successfully, but these errors were encountered: