We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a77b9d commit 39012f4Copy full SHA for 39012f4
2 files changed
client/src/test/java/com/microsoft/durabletask/EntityQueryPageableTest.java
@@ -165,9 +165,9 @@ void byPage_preservesQueryParameters() {
165
return new EntityQueryResult(Collections.emptyList(), null);
166
});
167
168
- for (EntityQueryResult ignored : pageable.byPage()) {
+ pageable.byPage().forEach(result -> {
169
// consume
170
- }
+ });
171
}
172
173
@Test
client/src/test/java/com/microsoft/durabletask/TaskEntityTest.java
@@ -161,10 +161,8 @@ public void add(int amount) {
161
this.state += amount;
162
163
164
- public void add(String label) {
+ public void add(@SuppressWarnings("unused") String label) {
// overloaded — should trigger ambiguous match error
- // 'label' intentionally unused; method exists to create ambiguous overload
-
@Override
0 commit comments