lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/FastIntMap.java [289:303]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            int i = nextIndex;
            e = current = table[i];
            while ( --i >= 0 )
            {
                if ( table[i] != null )
                {
                    break;
                }
            }
            nextIndex = i;
            return e;
        }

        @Override
        public void remove()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/FastLongMap.java [294:308]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            int i = nextIndex;
            e = current = table[i];
            while ( --i >= 0 )
            {
                if ( table[i] != null )
                {
                    break;
                }
            }
            nextIndex = i;
            return e;
        }

        @Override
        public void remove()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



