Skip to content

Commit 1f213f2

Browse files
committed
ServiceIndexTest: add missing final keyword
1 parent 254dd05 commit 1f213f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/scijava/service/ServiceIndexTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void testGetAll() {
7171
@Test
7272
public void testMarkerInterfaces() {
7373
final Context context = new Context();
74-
for (Service s : context.getServiceIndex().getAll()) {
74+
for (final Service s : context.getServiceIndex().getAll()) {
7575
assertTrue(s.getClass().getName(), s instanceof SciJavaService);
7676
}
7777
context.dispose();

0 commit comments

Comments
 (0)