sdk icon indicating copy to clipboard operation
sdk copied to clipboard

TempVars code check doesn't understand blocks

Open tonihele opened this issue 5 years ago • 1 comments
trafficstars

TempVars code check doesn't understand blocks.

Following code triggers the hint and it should not:

        TempVars derp = TempVars.get();
        try
        {
            
        }
        finally {
            derp.release();     
        }

Seems that it doesn't even go and check inside blocks. Following code does not trigger the hint at all:

        try
        {
            TempVars derp = TempVars.get();
        }
        finally {
  
        }

tonihele avatar Nov 09 '20 20:11 tonihele

Ayup. I just done got bit by this issue.

stephengold avatar Nov 09 '20 21:11 stephengold