Skip to content

Commit

Permalink
Make SourceMapConsumerV3.parse(SourceMapObject) public.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=216451492
  • Loading branch information
sigmundch authored and brad4d committed Oct 10, 2018
1 parent 8fbf05b commit 794012c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/com/google/debugging/sourcemap/SourceMapConsumerV3.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,8 @@ public void parse(String contents) throws SourceMapParseException {
parse(sourceMapObject, null);
}

/**
* Parses the given contents containing a source map.
*/
void parse(SourceMapObject sourceMapObject, SourceMapSupplier sectionSupplier)
/** Parses the given contents containing a source map. */
public void parse(SourceMapObject sourceMapObject, SourceMapSupplier sectionSupplier)
throws SourceMapParseException {
if (sourceMapObject.getVersion() != 3) {
throw new SourceMapParseException("Unknown version: " + sourceMapObject.getVersion());
Expand Down

0 comments on commit 794012c

Please sign in to comment.