示例#1
0
 @Override
 public void destroy() {
   for (Check c : mAllChecks) {
     c.destroy();
   }
   mCache.destroy();
   super.destroy();
 }
示例#2
0
 @Override
 public void destroy() {
   for (Check check : ordinaryChecks) {
     check.destroy();
   }
   for (Check check : commentChecks) {
     check.destroy();
   }
   if (cache != null) {
     try {
       cache.persist();
     } catch (IOException e) {
       throw new IllegalStateException("Unable to persist cache file", e);
     }
   }
   super.destroy();
 }
 @Override
 public void beginProcessing(String aCharset) {
   super.beginProcessing(aCharset);
   mDetector = new SinglelineDetector(mOptions);
 }