Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Nov 21, 2022
1 parent c60b9f5 commit 3d33cee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/sf/mpxj/fasttrack/AssignmentColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class AssignmentColumn extends AbstractColumn
offset = options.getOffset();

// Handle unknown string structure seen in a couple of examples from v11/2020
if (FastTrackUtility.getByte(buffer, offset+1) == 0x01)
if (FastTrackUtility.getByte(buffer, offset + 1) == 0x01)
{
offset += 4;
int stringLength = FastTrackUtility.getInt(buffer, offset);
Expand Down
1 change: 0 additions & 1 deletion src/main/java/net/sf/mpxj/mpp/MPPReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
package net.sf.mpxj.mpp;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
Expand Down

0 comments on commit 3d33cee

Please sign in to comment.