com.github.bedrin.jdbc.sniffer.SpyWithValue Maven / Gradle / Ivy
package com.github.bedrin.jdbc.sniffer;
public final class SpyWithValue extends Spy> {
private final V value;
SpyWithValue(V value) {
this.value = value;
}
public V getValue() {
return value;
}
}