Skip to content

Commit

Permalink
improve ofJustFile
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Mar 11, 2024
1 parent 7c14fc2 commit bd88196
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ public static BunchOfResourcesEntry ofConventionallyNamedFiles(String... resourc
return e;
}

public static BunchOfResourcesEntry ofJustFile(long version, String description, String resourcesPath) {
public static BunchOfResourcesEntry ofJustFile(long version, String description, String resourcePath) {
var e = new BunchOfResourcesEntry();
e.setVersion(version);
// e.setType(BunchOfResourcesType.JUST_FILE); set in setVersion()
e.setResourcePath(resourcesPath);
e.setResourcePath(resourcePath);
e.setDescription(description);
return e;
}
Expand Down

0 comments on commit bd88196

Please sign in to comment.