Skip to content

Commit e7922a5

Browse files
authored
Fix break statement misuse (#124)
fix break statement misuse
1 parent 5b98f49 commit e7922a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/aerospike/mapper/tools/ClassCacheEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ private void formOrdinalsFromValues() {
342342
for (Annotation thisAnnotation : thisValue.getAnnotations()) {
343343
if (thisAnnotation instanceof AerospikeOrdinal) {
344344
ordinal = ((AerospikeOrdinal) thisAnnotation).value();
345+
break;
345346
}
346-
break;
347347
}
348348
}
349349
if (ordinal != null) {

0 commit comments

Comments
 (0)