Skip to content

Commit

Permalink
fix for checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
luoqiyi committed Nov 5, 2021
1 parent 4a15418 commit b277596
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/src/main/java/com/influxdb/client/BucketsQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class BucketsQuery {
private Integer limit;

/**
* The last resource ID from which to seek from (but not including).
* The last resource ID from which to seek from (but not including).
* This is to be used instead of `offset`. (optional)
*/
@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
import javax.annotation.Nullable;

import com.influxdb.Arguments;
import com.influxdb.client.TasksQuery;
import com.influxdb.client.TasksApi;
import com.influxdb.client.TasksQuery;
import com.influxdb.client.domain.AddResourceMemberRequestBody;
import com.influxdb.client.domain.Label;
import com.influxdb.client.domain.LabelMapping;
Expand Down Expand Up @@ -127,12 +127,12 @@ public List<Task> findTasksByOrganizationID(@Nullable final String orgID) {
public List<Task> findTasks(@Nullable final String afterID,
@Nullable final String userID,
@Nullable final String orgID) {
final TasksQuery TasksQuery = new TasksQuery();
TasksQuery.setAfter(afterID);
TasksQuery.setUser(userID);
TasksQuery.setOrgID(orgID);
final TasksQuery tasksQuery = new TasksQuery();
tasksQuery.setAfter(afterID);
tasksQuery.setUser(userID);
tasksQuery.setOrgID(orgID);

return findTasks(TasksQuery);
return findTasks(tasksQuery);
}

@Nonnull
Expand Down

0 comments on commit b277596

Please sign in to comment.