Skip to content

Commit

Permalink
Undo on bug testing revision mistakenly left in java function [ref #5210
Browse files Browse the repository at this point in the history
  • Loading branch information
mheppler committed Jan 12, 2021
1 parent d85806e commit 6b4fb24
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1204,7 +1204,7 @@ public String tabularDataDisplayInfo(DataFile datafile) {
String tabInfo = "";

if (datafile == null) {
return null;
return "";
}

if (datafile.isTabularData() && datafile.getDataTable() != null) {
Expand All @@ -1226,7 +1226,7 @@ public String tabularDataUnfDisplay(DataFile datafile) {
String tabUnf = "";

if (datafile == null) {
return null;
return "";
}

if (datafile.isTabularData() && datafile.getDataTable() != null) {
Expand Down

0 comments on commit 6b4fb24

Please sign in to comment.