Skip to content

Commit

Permalink
added missing static and final modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Oct 2, 2024
1 parent 8b12fcb commit c61d35d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,12 @@ public void testExistsNotDeletedByParentOrganizationMemberOrganizationRoleAndNot
}
}

private class TaskAsCsvGeneratorReader extends Reader
private static class TaskAsCsvGeneratorReader extends Reader
{
public static final int TASK_ROW_LINE_LENGTH = 1615;

private final int maxTasks;
private int currentTask;
private int maxTasks;

public TaskAsCsvGeneratorReader(int maxTasks)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,12 @@ public void testUpdateWithExistingBinary() throws Exception
dao.update(createdOrg);
}

private class TaskAsCsvGeneratorReader extends Reader
private static class TaskAsCsvGeneratorReader extends Reader
{
public static final int TASK_ROW_LINE_LENGTH = 1615;

private final int maxTasks;
private int currentTask;
private int maxTasks;

public TaskAsCsvGeneratorReader(int maxTasks)
{
Expand Down

0 comments on commit c61d35d

Please sign in to comment.