sdk
sdk copied to clipboard
TempVars code check doesn't understand blocks
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 {
}
Ayup. I just done got bit by this issue.