Skip to content

Commit

Permalink
fix checkstyle violation
Browse files Browse the repository at this point in the history
  • Loading branch information
Crim committed Oct 23, 2020
1 parent f0cbe49 commit 8f456a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Steps for performing a release:
2. Validate and then commit version: `mvn versions:commit`
3. Update CHANGELOG and README files.
4. Merge to master.
5. Deploy to Maven Central: mvn clean deploy -P release
5. Deploy to Maven Central: `mvn clean deploy -P release`
7. Create release on Github project, uploading JAR artifacts.

## Changelog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@ public ProspectQueryRequest withAssignUser(final String userEmail) {
return setParam("assigned_to_user", userEmail);
}

/**
* Retrieve only archived/non-archived prospects.
* @param onlyReturnArchived True to only get returned archived entries.
* @return BaseQueryRequest
*/
@Override
public ProspectQueryRequest withArchivedOnly(final boolean onlyReturnArchived) {
return super.withArchivedOnly(onlyReturnArchived);
}

/**
* Only select prospects who are archived.
* @return RequestBuilder
Expand All @@ -126,16 +136,6 @@ public ProspectQueryRequest withNotArchivedOnly() {
return super.withArchivedOnly(false);
}

/**
* Retrieve only archived/non-archived prospects.
* @param onlyReturnArchived True to only get returned archived entries.
* @return BaseQueryRequest
*/
@Override
public ProspectQueryRequest withArchivedOnly(final boolean onlyReturnArchived) {
return super.withArchivedOnly(onlyReturnArchived);
}

/**
* Only select prospects who have a grade equal to the specified grade.
* @param grade Grade in format of "A", "A+", "B", "C-"
Expand Down

0 comments on commit 8f456a7

Please sign in to comment.