(R rowKey)
| 186 | @Nullable final C upperBound; |
| 187 | |
| 188 | TreeRow(R rowKey) { |
| 189 | this(rowKey, null, null); |
| 190 | } |
| 191 | |
| 192 | TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) { |
| 193 | super(rowKey); |
nothing calls this directly
no test coverage detected