@@ -86,7 +86,7 @@ boolean addPolicy(String sec, String ptype, List<String> rule) {
8686 try {
8787 adapter .addPolicy (sec , ptype , rule );
8888 } catch (UnsupportedOperationException ignored ) {
89- Util .logPrintf ("Method not implemented" );
89+ Util .logPrint ("Method not implemented" );
9090 } catch (Exception e ) {
9191 Util .logPrint ("An exception occurred:" + e .getMessage ());
9292 return false ;
@@ -128,7 +128,7 @@ boolean addPolicies(String sec, String ptype, List<List<String>> rules, boolean
128128 ((BatchAdapter ) adapter ).addPolicies (sec , ptype , rules );
129129 }
130130 } catch (UnsupportedOperationException ignored ) {
131- Util .logPrintf ("Method not implemented" );
131+ Util .logPrint ("Method not implemented" );
132132 } catch (Exception e ) {
133133 Util .logPrint ("An exception occurred:" + e .getMessage ());
134134 return false ;
@@ -165,7 +165,7 @@ boolean removePolicy(String sec, String ptype, List<String> rule) {
165165 try {
166166 adapter .removePolicy (sec , ptype , rule );
167167 } catch (UnsupportedOperationException ignored ) {
168- Util .logPrintf ("Method not implemented" );
168+ Util .logPrint ("Method not implemented" );
169169 } catch (Exception e ) {
170170 Util .logPrint ("An exception occurred:" + e .getMessage ());
171171 return false ;
@@ -203,7 +203,7 @@ boolean updatePolicy(String sec, String ptype, List<String> oldRule, List<String
203203 try {
204204 ((UpdatableAdapter ) adapter ).updatePolicy (sec , ptype , oldRule , newRule );
205205 } catch (UnsupportedOperationException ignored ) {
206- Util .logPrintf ("Method not implemented" );
206+ Util .logPrint ("Method not implemented" );
207207 } catch (Exception e ) {
208208 Util .logPrint ("An exception occurred:" + e .getMessage ());
209209 return false ;
@@ -274,7 +274,7 @@ boolean removePolicies(String sec, String ptype, List<List<String>> rules) {
274274 ((BatchAdapter ) adapter ).removePolicies (sec , ptype , rules );
275275 }
276276 } catch (UnsupportedOperationException ignored ) {
277- Util .logPrintf ("Method not implemented" );
277+ Util .logPrint ("Method not implemented" );
278278 } catch (Exception e ) {
279279 Util .logPrint ("An exception occurred:" + e .getMessage ());
280280 return false ;
@@ -310,7 +310,7 @@ boolean removeFilteredPolicy(String sec, String ptype, int fieldIndex, String...
310310 try {
311311 adapter .removeFilteredPolicy (sec , ptype , fieldIndex , fieldValues );
312312 } catch (UnsupportedOperationException ignored ) {
313- Util .logPrintf ("Method not implemented" );
313+ Util .logPrint ("Method not implemented" );
314314 } catch (Exception e ) {
315315 Util .logPrint ("An exception occurred:" + e .getMessage ());
316316 return false ;
0 commit comments