Skip to content

Commit

Permalink
Fixed: tab chars in DataverseServiceBean
Browse files Browse the repository at this point in the history
  • Loading branch information
GPortas committed Feb 13, 2025
1 parent 6155bdd commit 390505b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,10 @@ public Dataverse findByAlias(String anAlias) {
return null;
}
}
public boolean hasData(Dataverse dataverse) {
return (getChildCount(dataverse) > 0);
}

public boolean hasData(Dataverse dataverse) {
return (getChildCount(dataverse) > 0);
}

public Long getChildCount(Dataverse dataverse) {
TypedQuery<Long> amountQry = em.createNamedQuery("Dataverse.ownedObjectsById", Long.class)
Expand Down

0 comments on commit 390505b

Please sign in to comment.