Skip to content

Commit

Permalink
Merge pull request #3722 from comp2120-workshop11-group1/StaticJavaPa…
Browse files Browse the repository at this point in the history
…rser-and-SourceRoot-APIs#3415

Issue #3415
  • Loading branch information
jlerbsc committed Oct 19, 2022
2 parents b9a7d0f + e56b3df commit a06678f
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,19 @@ private StaticJavaParser() {
}

/**
* Get the configuration for the parse... methods.
* Get the configuration for the parse... methods. Deprecated method.
*
* @deprecated use {@link #getParserConfiguration()} instead
*/
@Deprecated
public static ParserConfiguration getConfiguration() {
return getParserConfiguration();
}

/**
* Get the configuration for the parse... methods.
*/
public static ParserConfiguration getParserConfiguration() {
return localConfiguration.get();
}

Expand Down

0 comments on commit a06678f

Please sign in to comment.