Skip to content

Commit

Permalink
Use getter instead of direct access
Browse files Browse the repository at this point in the history
  • Loading branch information
dersmon committed Nov 22, 2024
1 parent ae30b3e commit 3a042b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void addImages(final Dataset dataset) {
if (excludeList.contains(arachneId.getTableName())) {
return;
} else {
if ("marbilder".equals(arachneId.getTableName()) && !arachneId.deleted) {
if ("marbilder".equals(arachneId.getTableName()) && !arachneId.isDeleted()) {
final Image image = new Image();
image.setImageId(arachneId.getArachneEntityID());
String fileName = dataset.getField("marbilder.DateinameMarbilder");
Expand Down

0 comments on commit 3a042b8

Please sign in to comment.