(String method, Map<String, @Nullable Object> params)
| 35 | private final boolean sendsResponse; |
| 36 | |
| 37 | public Command(String method, Map<String, @Nullable Object> params) { |
| 38 | this(method, params, Object.class); |
| 39 | } |
| 40 | |
| 41 | public Command(String method, Map<String, @Nullable Object> params, Type typeOfX) { |
| 42 | this( |
nothing calls this directly
no test coverage detected