forked from spotbugs/spotbugs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09d70e1
commit 70506a8
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
spotbugsTestCases/src/java/overridableMethodCall/Issue2414.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package overridableMethodCall; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
public class Issue2414 { | ||
|
||
private List<String> someList; | ||
private List<String> aList = new ArrayList<String>() {{ | ||
add("de"); | ||
add("us"); | ||
}}; | ||
|
||
public Issue2414() { | ||
this.someList = getList(); | ||
} | ||
|
||
public void doit() { | ||
someList.add("test"); | ||
} | ||
|
||
|
||
private List<String> getList() { | ||
|
||
return aList.stream() | ||
.map(String::trim) | ||
.peek(url -> { | ||
if (!url.contains("blabla")) { | ||
throw new IllegalStateException("blub"); | ||
} | ||
}) | ||
.map(test -> test | ||
.replace("https://", "")) | ||
// if this peek is commented, it works | ||
.peek(test -> { | ||
if (test.length() != 2) { | ||
throw new IllegalStateException("foobar"); | ||
} | ||
}) | ||
.collect(Collectors.toList()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package overridableMethodCall; | ||
|
||
import java.util.List; | ||
|
||
public class Issue2414 { | ||
|
||
private List<String> someList; | ||
private List<String> aList = List.of("de", "us"); | ||
|
||
public Issue2414() { | ||
this.someList = getList(); | ||
} | ||
|
||
public void doit() { | ||
someList.add("test"); | ||
} | ||
|
||
private List<String> getList() { | ||
|
||
return aList.stream() | ||
.map(String::trim) | ||
.peek(url -> { | ||
if (!url.contains("blabla")) { | ||
throw new IllegalStateException("blub"); | ||
} | ||
}) | ||
.map(test -> test | ||
.replace("https://", "")) | ||
// if this peek is commented, it works | ||
.peek(test -> { | ||
if (test.length() != 2) { | ||
throw new IllegalStateException("foobar"); | ||
} | ||
}) | ||
.toList(); | ||
} | ||
} |