We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94d43ee commit b2871d7Copy full SHA for b2871d7
src/main/java/edu/hm/hafner/util/LineRangeList.java
@@ -3,6 +3,7 @@
3
import com.google.errorprone.annotations.CanIgnoreReturnValue;
4
5
import edu.umd.cs.findbugs.annotations.NonNull;
6
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
7
8
import java.io.Serial;
9
import java.io.Serializable;
@@ -240,7 +241,7 @@ private void prev() {
240
241
*
242
* @return the current element
243
*/
- @Override
244
+ @Override @SuppressFBWarnings(value = "IT_NO_SUCH_ELEMENT", justification = "thrown in read()")
245
public LineRange next() {
246
int s = read();
247
int d = read();
0 commit comments