fix: change inner class scope to fix JDK17 exception #457

This commit is contained in:
tjq 2022-10-03 13:49:38 +08:00
parent 4bc94dd465
commit 806747d88c
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ public class MapProcessorDemo implements MapProcessor {
@Getter
@NoArgsConstructor
@AllArgsConstructor
private static class SubTask {
public static class SubTask {
private Integer siteId;
private List<Integer> itemIds;
}

View File

@ -87,7 +87,7 @@ public class MapReduceProcessorDemo implements MapReduceProcessor {
@ToString
@NoArgsConstructor
@AllArgsConstructor
private static class TestSubTask {
public static class TestSubTask {
private String name;
private int age;
}