summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java
diff options
context:
space:
mode:
authorNate Fischer <ntfschr@chromium.org>2018-05-16 23:18:12 +0000
committerCommit Bot <commit-bot@chromium.org>2018-05-16 23:18:12 +0000
commit42da6cba7a2feab538fd482f062629f14ef6b2b0 (patch)
tree04135ca621b3421f3740ab92d38592727574f5ce /src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java
parent3a9b1d70fe72d843dd69069d797bd34a31364ddd (diff)
downloadwebview_support_interfaces-42da6cba7a2feab538fd482f062629f14ef6b2b0.tar.gz
AW: remove redundant public modifier from interfaces
No change to logic. This removes the 'public' visibility modifier from methods on public interfaces, as these methods are implicitly public (and this is a lint warning on the Android side). Bug: 843420 Test: N/A Change-Id: I17ea506f8cb7965c80e2489d985d1a3f2476fb50 Reviewed-on: https://chromium-review.googlesource.com/1062965 Reviewed-by: Paul Miller <paulmiller@chromium.org> Commit-Queue: Nate Fischer <ntfschr@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#559326} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 393cfcaff4c98af880deff6fbd69cd78b203f5dd
Diffstat (limited to 'src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java')
-rw-r--r--src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java b/src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java
index 52db23c..953d8cb 100644
--- a/src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java
+++ b/src/org/chromium/support_lib_boundary/WebResourceErrorBoundaryInterface.java
@@ -8,6 +8,6 @@ package org.chromium.support_lib_boundary;
* Boundary interface for WebResourceErrorCompat.
*/
public interface WebResourceErrorBoundaryInterface {
- public int getErrorCode();
- public CharSequence getDescription();
+ int getErrorCode();
+ CharSequence getDescription();
}