| 8 | public class Main { |
| 9 | |
| 10 | public static class Demo { |
| 11 | public Integer id; |
| 12 | public String name; |
| 13 | |
| 14 | public Demo(Integer id, String name) { |
| 15 | this.id = id; |
| 16 | this.name = name; |
| 17 | } |
| 18 | |
| 19 | |
| 20 | public Integer getId() { |
| 21 | return id; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | public static void main(String[] args) { |
| 26 | List<Demo> demos = new ArrayList<>(); |
nothing calls this directly
no outgoing calls
no test coverage detected