Skip to content

Commit

Permalink
1 more part -> tld paramter change
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Garvey rpgarve committed Sep 13, 2024
1 parent f3ef90e commit ee634da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/emissary/core/DataObjectFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static IBaseDataObject getInstance(final byte[] payload, final String fil
}

public static IBaseDataObject getInstance(final byte[] payload, final String filename, final String fileTypeAndForm, IBaseDataObject tld) {
final Object o = Factory.create(clazz, payload, filename, fileTypeAndForm, parent);
final Object o = Factory.create(clazz, payload, filename, fileTypeAndForm, tld);
return (IBaseDataObject) o;
}

Expand Down

0 comments on commit ee634da

Please sign in to comment.