java: remove redundant null checks
Change-Id: Ia42e5ed715fbd3f5b84029a9844da55f307c6260
This commit is contained in:
@@ -363,10 +363,7 @@ public class ScriptEditorForBeanShell
|
||||
if (fos != null) {
|
||||
try {
|
||||
fos.flush();
|
||||
if ( fos != null )
|
||||
{
|
||||
fos.close();
|
||||
}
|
||||
fos.close();
|
||||
}
|
||||
catch (IOException ignore) {
|
||||
}
|
||||
|
Reference in New Issue
Block a user