Skip to content

Commit

Permalink
maybe fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Niessner authored and Al Niessner committed Dec 6, 2023
1 parent 1c3e48d commit 94b5df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gov/nasa/pds/label/Label.java
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ private DataObject makeTable(gov.nasa.arc.pds.xml.generated.File file, TableDeli
} else if (table.getObjectLength() != null) {
size = table.getObjectLength().getValue().longValueExact();
} else if (file.getFileSize() != null) {
size = file.getFileSize().getValue().longValue() - offset;
size = 0;//file.getFileSize().getValue().longValue() - offset;
}
} else if (table.getObjectLength() != null) {
size = table.getObjectLength().getValue().longValueExact();
Expand Down

0 comments on commit 94b5df2

Please sign in to comment.