@@ -58,7 +58,7 @@ public class JsonbTester<T> extends AbstractJsonMarshalTester<T> {
58
58
private final Jsonb jsonb ;
59
59
60
60
/**
61
- * Create a new uninitialized {@link GsonTester } instance.
61
+ * Create a new uninitialized {@link JsonbTester } instance.
62
62
* @param jsonb the Jsonb instance
63
63
*/
64
64
protected JsonbTester (Jsonb jsonb ) {
@@ -93,7 +93,7 @@ protected T readObject(Reader reader, ResolvableType type) throws IOException {
93
93
* Utility method to initialize {@link JsonbTester} fields. See {@link JsonbTester
94
94
* class-level documentation} for example usage.
95
95
* @param testInstance the test instance
96
- * @param jsonb the Gson instance
96
+ * @param jsonb the Jsonb instance
97
97
*/
98
98
public static void initFields (Object testInstance , Jsonb jsonb ) {
99
99
new JsonbFieldInitializer ().initFields (testInstance , jsonb );
@@ -103,7 +103,7 @@ public static void initFields(Object testInstance, Jsonb jsonb) {
103
103
* Utility method to initialize {@link JsonbTester} fields. See {@link JsonbTester
104
104
* class-level documentation} for example usage.
105
105
* @param testInstance the test instance
106
- * @param jsonb an object factory to create the Gson instance
106
+ * @param jsonb an object factory to create the Jsonb instance
107
107
*/
108
108
public static void initFields (Object testInstance , ObjectFactory <Jsonb > jsonb ) {
109
109
new JsonbTester .JsonbFieldInitializer ().initFields (testInstance , jsonb );
0 commit comments