(int value)
| 31 | private final int size; |
| 32 | |
| 33 | public VarInt(int value) { |
| 34 | this.value = value; |
| 35 | this.serialized = serialize0(this.value); |
| 36 | this.size = this.serialized.length; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @return The integer value that is represented by this {@link VarInt}. |
nothing calls this directly
no test coverage detected