make last commit a final var

This commit is contained in:
fjy 2014-03-27 17:56:25 -07:00
parent cb1798c520
commit 9ebdf16ed6
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class ReferenceCountingSequence<T> extends YieldingSequenceBase<T>
OutType initValue, YieldingAccumulator<OutType, T> accumulator
)
{
Closeable closeable = segment.increment();
final Closeable closeable = segment.increment();
return new ResourceClosingYielder<OutType>(baseSequence.toYielder(initValue, accumulator), closeable);
}
}