diff --git a/compiler/java/com/google/dart/compiler/backend/js/DartMangler.java b/compiler/java/com/google/dart/compiler/backend/js/DartMangler.java index 63280981294..d381a01b138 100644 --- a/compiler/java/com/google/dart/compiler/backend/js/DartMangler.java +++ b/compiler/java/com/google/dart/compiler/backend/js/DartMangler.java @@ -15,8 +15,6 @@ import com.google.dart.compiler.resolver.MethodElement; * Mangles dart identifiers so that they don't conflict with JavaScript identifiers. * This complements the JsScope infrastructure. The JsScope infrastructure deals with obfuscatable * identifiers, whereas the DartMangler deals with non-obfuscatable identifiers. - * - * @author floitsch@google.com (Florian Loitsch) */ public interface DartMangler { public static final String NEGATE_OPERATOR_NAME = "negate"; diff --git a/compiler/java/com/google/dart/compiler/backend/js/JsNamer.java b/compiler/java/com/google/dart/compiler/backend/js/JsNamer.java index a3f75852528..41e99061eda 100644 --- a/compiler/java/com/google/dart/compiler/backend/js/JsNamer.java +++ b/compiler/java/com/google/dart/compiler/backend/js/JsNamer.java @@ -7,8 +7,6 @@ package com.google.dart.compiler.backend.js; import com.google.dart.compiler.backend.js.ast.JsProgram; /** - * @author floitsch@google.com (Florian Loitsch) - * * A namer runs through a program and renames the short names of JsNames. * Namers must assign short names that don't clash and that are valid * JS-identifiers. Nested JsScopes must not shadow JsNames from outer diff --git a/compiler/java/com/google/dart/runner/JavaScriptLauncher.java b/compiler/java/com/google/dart/runner/JavaScriptLauncher.java index 550315984aa..908a7b6bdb9 100644 --- a/compiler/java/com/google/dart/runner/JavaScriptLauncher.java +++ b/compiler/java/com/google/dart/runner/JavaScriptLauncher.java @@ -6,10 +6,6 @@ package com.google.dart.runner; import java.io.PrintStream; -/** - * @author floitsch@google.com (Florian Loitsch) - * - */ interface JavaScriptLauncher { void execute(String jsScript, String sourceName, String[] args, RunnerOptions flags, diff --git a/compiler/java/com/google/dart/runner/RhinoLauncher.java b/compiler/java/com/google/dart/runner/RhinoLauncher.java index 21f12b692b3..b38464521ef 100644 --- a/compiler/java/com/google/dart/runner/RhinoLauncher.java +++ b/compiler/java/com/google/dart/runner/RhinoLauncher.java @@ -15,8 +15,6 @@ import java.io.PrintStream; import java.lang.reflect.Member; /** - * @author floitsch@google.com (Florian Loitsch) - * * Runs a given JS script. */ public class RhinoLauncher implements JavaScriptLauncher { diff --git a/compiler/java/com/google/dart/runner/V8Launcher.java b/compiler/java/com/google/dart/runner/V8Launcher.java index de55d20f56f..23d61ea4fdd 100644 --- a/compiler/java/com/google/dart/runner/V8Launcher.java +++ b/compiler/java/com/google/dart/runner/V8Launcher.java @@ -22,8 +22,6 @@ import java.util.Arrays; import java.util.List; /** - * @author floitsch@google.com (Florian Loitsch) - * * Runs a given JS-script in d8 (part of V8). */ public class V8Launcher implements JavaScriptLauncher {