Browse Source

convert "".equals(string) to string.isEmpty()

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812470 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
Javen O'Neal 6 years ago
parent
commit
59277965a2

+ 1
- 1
src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java View File

@@ -479,7 +479,7 @@ public class ToHtml {
style.getDataFormatString());
CellFormatResult result = cf.apply(cell);
content = result.text;
if ("".equals(content)) {
if (content.isEmpty()) {
content = " ";
}
}

+ 1
- 1
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestSignatureInfo.java View File

@@ -798,7 +798,7 @@ public class TestSignatureInfo {

private static File copy(File input) throws IOException {
String extension = input.getName().replaceAll(".*?(\\.[^.]+)?$", "$1");
if (extension == null || "".equals(extension)) {
if (extension == null || extension.isEmpty()) {
extension = ".zip";
}


+ 1
- 1
src/testcases/org/apache/poi/ss/formula/functions/BaseTestFunctionsFromSpreadsheet.java View File

@@ -127,7 +127,7 @@ public abstract class BaseTestFunctionsFromSpreadsheet {
String rowComment = getCellTextValue(r, SS.COLUMN_ROW_COMMENT, "row comment");

String testName = (currentGroupComment+'\n'+rowComment).replace("null", "").trim().replace("\n", " - ");
if ("".equals(testName)) {
if (testName.isEmpty()) {
testName = evalCell.getCellFormula();
}

+ 1
- 1
src/testcases/org/apache/poi/ss/usermodel/BaseTestCellComment.java View File

@@ -170,7 +170,7 @@ public abstract class BaseTestCellComment {

assertEquals("Yegor Kozlov", comment.getAuthor());
assertFalse("cells in the second column have not empyy notes",
"".equals(comment.getString().getString()));
comment.getString().getString().isEmpty());
assertEquals(rownum, comment.getRow());
assertEquals(cell.getColumnIndex(), comment.getColumn());
}

Loading…
Cancel
Save