@@ -249,11 +249,11 @@ final SynchronizedLinkedList<ComplexRegion> filter(Deque<ComplexRegion> regions)
249249 return ret ;
250250 }
251251
252- boolean joinInteresting (int positionA , int positionB ) {
252+ final boolean joinInteresting (int positionA , int positionB ) {
253253 return joinInteresting (positionA , positionB , 0 , 0 );
254254 }
255255
256- boolean joinInteresting (int positionA , int positionB , int indelA , int indelB ) {
256+ final boolean joinInteresting (int positionA , int positionB , int indelA , int indelB ) {
257257 final int indelHint = Math .max (indelA , indelB );
258258 final int posA = positionA + indelA / 2 ;
259259 final int posB = positionB - indelB / 2 ;
@@ -270,7 +270,7 @@ final ComplexRegion computeEndDangle(Deque<ComplexRegion> regions) {
270270 return regions .peekLast ();
271271 }
272272
273- void addRegion (final Deque <ComplexRegion > regions , int firstInteresting , int endInteresting , boolean forceComplex , int firstIndel , int endIndel ) {
273+ final void addRegion (final Deque <ComplexRegion > regions , int firstInteresting , int endInteresting , boolean forceComplex , int firstIndel , int endIndel ) {
274274 if (firstInteresting != -1 ) {
275275 assert endInteresting >= firstInteresting : endInteresting + ":" + firstInteresting ;
276276 final ComplexRegion .RegionType regionType ;
@@ -286,7 +286,7 @@ void addRegion(final Deque<ComplexRegion> regions, int firstInteresting, int end
286286 }
287287 }
288288
289- void addOverflowRegion (final Deque <ComplexRegion > regions , final VariantLocus locus ) {
289+ final void addOverflowRegion (final Deque <ComplexRegion > regions , final VariantLocus locus ) {
290290 final ComplexRegion com = new ComplexRegion (mReferenceName , locus .getStart (), locus .getEnd (), RegionType .OVERFLOW );
291291 regions .add (com );
292292 }
0 commit comments