Skip to content

Commit

Permalink
Remove dupe
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Dec 19, 2024
1 parent 538a274 commit 6b0aa49
Showing 1 changed file with 1 addition and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,30 +469,6 @@ public Model getRootModel() {
}

@Override
public void add(ModelProblem problem) {
result.addProblem(problem);
}

@Override
public void add(BuilderProblem.Severity severity, ModelProblem.Version version, String message) {
add(severity, version, message, null, null);
}

@Override
public void add(
BuilderProblem.Severity severity,
ModelProblem.Version version,
String message,
InputLocation location) {
add(severity, version, message, location, null);
}

@Override
public void add(
BuilderProblem.Severity severity, ModelProblem.Version version, String message, Exception exception) {
add(severity, version, message, null, exception);
}

public void add(
BuilderProblem.Severity severity,
ModelProblem.Version version,
Expand Down Expand Up @@ -1846,6 +1822,7 @@ private static List<String> getSubprojects(Model activated) {
return subprojects;
}

@Override
public Model buildRawModel(ModelBuilderRequest request) throws ModelBuilderException {
ModelBuilderSessionState build = new ModelBuilderSessionState(request);
Model model = build.readRawModel();
Expand Down

0 comments on commit 6b0aa49

Please sign in to comment.