@@ -35,7 +35,7 @@ public abstract class BDDFactory {
35
35
public static final String getProperty (String key , String def ) {
36
36
try {
37
37
return System .getProperty (key , def );
38
- } catch (AccessControlException _ ) {
38
+ } catch (AccessControlException e ) {
39
39
return def ;
40
40
}
41
41
}
@@ -95,10 +95,10 @@ public static BDDFactory init(String bddpackage, int nodenum, int cachesize)
95
95
return (BDDFactory ) m .invoke (null , new Object []
96
96
{ new Integer (nodenum ), new Integer (cachesize ) });
97
97
}
98
- catch (ClassNotFoundException _ ) {}
99
- catch (NoSuchMethodException _ ) {}
100
- catch (IllegalAccessException _ ) {}
101
- catch (InvocationTargetException _ ) {}
98
+ catch (ClassNotFoundException e ) {}
99
+ catch (NoSuchMethodException e ) {}
100
+ catch (IllegalAccessException e ) {}
101
+ catch (InvocationTargetException e ) {}
102
102
// falling back to default java implementation.
103
103
return JFactory .init (nodenum , cachesize );
104
104
}
@@ -495,7 +495,7 @@ public BDD load(String filename) throws IOException {
495
495
BDD result = load (r );
496
496
return result ;
497
497
} finally {
498
- if (r != null ) try { r .close (); } catch (IOException _ ) { }
498
+ if (r != null ) try { r .close (); } catch (IOException e ) { }
499
499
}
500
500
}
501
501
// TODO: error code from bdd_load (?)
@@ -657,7 +657,7 @@ public void save(String filename, BDD var) throws IOException {
657
657
is = new BufferedWriter (new FileWriter (filename ));
658
658
save (is , var );
659
659
} finally {
660
- if (is != null ) try { is .close (); } catch (IOException _ ) { }
660
+ if (is != null ) try { is .close (); } catch (IOException e ) { }
661
661
}
662
662
}
663
663
// TODO: error code from bdd_save (?)
0 commit comments