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

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812470 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-10-18 08:22:51 +00:00
parent 21b65721e7
commit 3a2ee5f4d1
4 changed files with 4 additions and 4 deletions

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 = " ";
}
}

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";
}

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();
}

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());
}