Skip to content

Commit

Permalink
Remove redundant public modifiers.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=125488469
  • Loading branch information
blickly committed Jun 22, 2016
1 parent 14f1fb9 commit 41dd503
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/com/google/javascript/jscomp/deps/DependencyInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,28 @@
public interface DependencyInfo {

/** Gets the unique name / path of this file. */
public String getName();
String getName();

/** Gets the path of this file relative to Closure's base.js file. */
public String getPathRelativeToClosureBase();
String getPathRelativeToClosureBase();

/** Gets the symbols provided by this file. */
public Collection<String> getProvides();
Collection<String> getProvides();

/** Gets the symbols required by this file. */
public Collection<String> getRequires();
Collection<String> getRequires();

/** Gets the loading information for this file. */
public ImmutableMap<String, String> getLoadFlags();
ImmutableMap<String, String> getLoadFlags();

/** Whether the symbol is provided by a module */
public boolean isModule();
boolean isModule();

/**
* Abstract base implementation that defines derived accessors such
* as {@link #isModule}.
*/
public abstract class Base implements DependencyInfo {
abstract class Base implements DependencyInfo {
@Override public boolean isModule() {
return "goog".equals(getLoadFlags().get("module"));
}
Expand Down

0 comments on commit 41dd503

Please sign in to comment.