Skip to content

Commit

Permalink
Remove unused SubmissionResult.validations in favor of validationResult
Browse files Browse the repository at this point in the history
  • Loading branch information
cxcorp committed Dec 1, 2016
1 parent 426609c commit 63255a3
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ public SubmissionResult() {
@SerializedName("solution_url")
private String solutionUrl;

private ValidationResultImpl validations;

private String valgrind;

private boolean reviewed;
Expand Down Expand Up @@ -105,14 +103,6 @@ public void setError(String error) {
this.error = error;
}

public ValidationResultImpl getValidations() {
return validations;
}

public void setValidations(ValidationResultImpl validations) {
this.validations = validations;
}

public List<TestResult> getTestCases() {
return testCases;
}
Expand Down Expand Up @@ -322,8 +312,6 @@ public String toString() {
+ feedbackAnswerUrl
+ ", solutionUrl="
+ solutionUrl
+ ", validations="
+ validations
+ ", \n valgrind="
+ valgrind
+ ", reviewed="
Expand Down

0 comments on commit 63255a3

Please sign in to comment.