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

Unified Diff: java/org/chromium/distiller/LogUtil.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 side-by-side diff with in-line comments
Download patch
Index: java/org/chromium/distiller/LogUtil.java
diff --git a/java/org/chromium/distiller/LogUtil.java b/java/org/chromium/distiller/LogUtil.java
index e11d7c5977331c91848c156fed06a25b0d096b9b..8d39329f7e11af85874c0ad9a777e2431f306750 100644
--- a/java/org/chromium/distiller/LogUtil.java
+++ b/java/org/chromium/distiller/LogUtil.java
@@ -4,7 +4,6 @@
package org.chromium.distiller;
-import org.chromium.distiller.proto.DomDistillerProtos;
import org.chromium.distiller.proto.DomDistillerProtos.TimingEntry;
import org.chromium.distiller.proto.DomDistillerProtos.TimingInfo;
@@ -52,14 +51,14 @@ public class LogUtil {
/**
* Whether the log should be included in
- * {@link DomDistillerProtos.DomDistillerResult}.
+ * {@link org.chromium.distiller.proto.DomDistillerProtos.DomDistillerResult}.
*/
private static boolean sIncludeLog = false;
/**
* Whether the log should be suppressed. If this flag is true, there will be no output to
* the JS console. This is used when running the JS Tests in Chromium, where the log is
- * retreived using {@link #getAndClearLog} instead.
+ * retrieved using {@link #getAndClearLog} instead.
*/
private static boolean sSuppressConsoleOutput;
@@ -68,8 +67,8 @@ public class LogUtil {
}
/**
- * Log a string to console unless {@link #sSuppressLogOutput} is true. The log string is always
- * added to the log builder.
+ * Log a string to console unless {@link #sSuppressConsoleOutput} is true. The log string is
+ * always added to the log builder.
*/
public static void logToConsole(String str) {
if (str == null) {
« no previous file with comments | « java/org/chromium/distiller/IEReadingViewParser.java ('k') | java/org/chromium/distiller/PageParamInfo.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698