Skip to content

Commit

Permalink
Fix PrimitiveBlocks handling of OutOfBoundsZeroFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 24, 2024
1 parent 53c8d89 commit 7710e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/imglib2/blocks/ViewAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ private boolean checkExtensions1()
if (oobIndex >= 0)
{
final ExtensionViewNode node = ( ExtensionViewNode ) nodes.get( oobIndex );
oobExtension = Extension.of( node.getOutOfBoundsFactory() );
oobExtension = Extension.of( node );
}
return true;
}
Expand Down

0 comments on commit 7710e25

Please sign in to comment.