Skip to content

Commit 8f456a7

Browse files
committed
fix checkstyle violation
1 parent f0cbe49 commit 8f456a7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Steps for performing a release:
271271
2. Validate and then commit version: `mvn versions:commit`
272272
3. Update CHANGELOG and README files.
273273
4. Merge to master.
274-
5. Deploy to Maven Central: mvn clean deploy -P release
274+
5. Deploy to Maven Central: `mvn clean deploy -P release`
275275
7. Create release on Github project, uploading JAR artifacts.
276276

277277
## Changelog

src/main/java/com/darksci/pardot/api/request/prospect/ProspectQueryRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,16 @@ public ProspectQueryRequest withAssignUser(final String userEmail) {
110110
return setParam("assigned_to_user", userEmail);
111111
}
112112

113+
/**
114+
* Retrieve only archived/non-archived prospects.
115+
* @param onlyReturnArchived True to only get returned archived entries.
116+
* @return BaseQueryRequest
117+
*/
118+
@Override
119+
public ProspectQueryRequest withArchivedOnly(final boolean onlyReturnArchived) {
120+
return super.withArchivedOnly(onlyReturnArchived);
121+
}
122+
113123
/**
114124
* Only select prospects who are archived.
115125
* @return RequestBuilder
@@ -126,16 +136,6 @@ public ProspectQueryRequest withNotArchivedOnly() {
126136
return super.withArchivedOnly(false);
127137
}
128138

129-
/**
130-
* Retrieve only archived/non-archived prospects.
131-
* @param onlyReturnArchived True to only get returned archived entries.
132-
* @return BaseQueryRequest
133-
*/
134-
@Override
135-
public ProspectQueryRequest withArchivedOnly(final boolean onlyReturnArchived) {
136-
return super.withArchivedOnly(onlyReturnArchived);
137-
}
138-
139139
/**
140140
* Only select prospects who have a grade equal to the specified grade.
141141
* @param grade Grade in format of "A", "A+", "B", "C-"

0 commit comments

Comments
 (0)