We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5b13e commit d24acd6Copy full SHA for d24acd6
.github/workflows/build-main.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- master
7
+ tags:
8
+ - "*-[0-9]+.*"
9
10
jobs:
11
build:
src/main/java/org/scijava/util/ClassUtils.java
@@ -189,6 +189,9 @@ public static <A extends Annotation> void getAnnotatedFields(
189
cacheAnnotatedObjects(c, query);
190
cachedFields = fieldCache.getList(c, annotationClass);
191
}
192
+ // CTR START HERE: cachedFields should never be null now.
193
+ // But it is, with FilamentDetector 1.0.0. Figure out why and fix.
194
+ // Then cut release of scijava-common, and FilamentDetector.
195
196
fields.addAll(cachedFields);
197
0 commit comments