Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: java/org/chromium/distiller/PageParameterDetector.java

Issue 1725243002: Fix some warnings in Eclipse (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: address comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.distiller; 5 package org.chromium.distiller;
6 6
7 import com.google.gwt.regexp.shared.MatchResult; 7 import com.google.gwt.regexp.shared.MatchResult;
8 import com.google.gwt.regexp.shared.RegExp; 8 import com.google.gwt.regexp.shared.RegExp;
9 9
10 import java.util.ArrayList; 10 import java.util.ArrayList;
11 import java.util.Arrays;
12 import java.util.Collections; 11 import java.util.Collections;
13 import java.util.HashMap; 12 import java.util.HashMap;
14 import java.util.HashSet; 13 import java.util.HashSet;
15 import java.util.List; 14 import java.util.List;
16 import java.util.Map; 15 import java.util.Map;
17 import java.util.Set; 16 import java.util.Set;
18 17
19 /** 18 /**
20 * Background: 19 * Background:
21 * The long article/news/forum thread/blog document may be partitioned into se veral partial pages 20 * The long article/news/forum thread/blog document may be partitioned into se veral partial pages
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 sBadPageParamNames.add("subscriptions"); 473 sBadPageParamNames.add("subscriptions");
475 sBadPageParamNames.add("tag"); 474 sBadPageParamNames.add("tag");
476 sBadPageParamNames.add("tags"); 475 sBadPageParamNames.add("tags");
477 sBadPageParamNames.add("video"); 476 sBadPageParamNames.add("video");
478 sBadPageParamNames.add("videos"); 477 sBadPageParamNames.add("videos");
479 sBadPageParamNames.add("w"); 478 sBadPageParamNames.add("w");
480 sBadPageParamNames.add("wiki"); 479 sBadPageParamNames.add("wiki");
481 } 480 }
482 481
483 } 482 }
OLDNEW
« no previous file with comments | « java/org/chromium/distiller/PageParamInfo.java ('k') | java/org/chromium/distiller/PageParameterParser.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698