| Index: java/org/chromium/distiller/filters/simple/BoilerplateBlockFilter.java
|
| diff --git a/java/org/chromium/distiller/filters/simple/BoilerplateBlockFilter.java b/java/org/chromium/distiller/filters/simple/BoilerplateBlockFilter.java
|
| index 4f3bbe0f707b7504ecb0e0364f2f4214ad17f438..fde482bd9159590c7565f51e91257d108769047f 100644
|
| --- a/java/org/chromium/distiller/filters/simple/BoilerplateBlockFilter.java
|
| +++ b/java/org/chromium/distiller/filters/simple/BoilerplateBlockFilter.java
|
| @@ -53,8 +53,9 @@ public final class BoilerplateBlockFilter implements BoilerpipeFilter {
|
| this.labelToKeep = labelToKeep;
|
| }
|
|
|
| - public boolean process(TextDocument doc) {
|
| - List<TextBlock> textBlocks = doc.getTextBlocks();
|
| + @Override
|
| + public boolean process(TextDocument doc) {
|
| + List<TextBlock> textBlocks = doc.getTextBlocks();
|
| boolean hasChanges = false;
|
|
|
| for (Iterator<TextBlock> it = textBlocks.iterator(); it.hasNext();) {
|
|
|