File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
src/main/antora/modules/ROOT Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ class MyJdbcConfiguration extends AbstractJdbcConfiguration {
197
197
198
198
@Override
199
199
protected List<?> userConverters() {
200
- return Arrays.asList(new BooleanToStringConverter(), new StringToBooleanConverter());
200
+ return Arrays.asList(new BooleanToStringConverter(), new StringToBooleanConverter());
201
201
}
202
202
203
203
}
Original file line number Diff line number Diff line change @@ -182,16 +182,16 @@ This works only if the parameter name information is present in the Java `.class
182
182
----
183
183
class OrderItem {
184
184
185
- private @Id final String id;
186
- private final int quantity;
187
- private final double unitPrice;
185
+ private @Id final String id;
186
+ private final int quantity;
187
+ private final double unitPrice;
188
188
189
- OrderItem(String id, int quantity, double unitPrice) {
190
- this.id = id;
191
- this.quantity = quantity;
192
- this.unitPrice = unitPrice;
193
- }
189
+ OrderItem(String id, int quantity, double unitPrice) {
190
+ this.id = id;
191
+ this.quantity = quantity;
192
+ this.unitPrice = unitPrice;
193
+ }
194
194
195
- // getters/setters omitted
195
+ // getters/setters omitted
196
196
}
197
197
----
You can’t perform that action at this time.
0 commit comments