Skip to content

Commit

Permalink
Merge pull request ome#171 from scuniff/bug-170
Browse files Browse the repository at this point in the history
ome#170 Invocation of toString on an array
  • Loading branch information
joshmoore authored Jan 17, 2024
2 parents d64ded2 + 7f59673 commit d094154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ome/services/search/AnnotatedWith.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public Object doWork(Session session, ServiceFactory sf) {
for (int j = 0; j < annotation.length; j++) {
// Main criteria
if (useNamespace) {
notNullOrLikeOrEqual(qb, ann + ".ns", type[j], annotation[j]
notNullOrLikeOrEqual(qb, ann[j] + ".ns", type[j], annotation[j]
.getNs(), useLike, values.caseSensitive);
}

Expand Down

0 comments on commit d094154

Please sign in to comment.