Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java15
1 files changed, 7 insertions, 8 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java
index db284176f8f..23119667fdb 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/io/xml/WordMlTableWriter.java
@@ -72,17 +72,16 @@ public class WordMlTableWriter extends AbstractSheetWriter {
@Override
public void writeCellText(Object cellData, int cellIndex) throws IOException {
- if(cellData instanceof String){
- String cellDataStr = (String)cellData;
- str.append(CELL_STRART);
- if (cellDataStr != null) {
- str.append(cellDataStr);
- }
- str.append(CELL_END);
- }
+ if (cellData instanceof String) {
+ String cellDataStr = (String) cellData;
+ str.append(CELL_STRART);
+ str.append(cellDataStr);
+ str.append(CELL_END);
+ }
}
@Override
public void endWorkbook() {
+ // do nothing
}
}

Back to the top