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