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 {
197197
198198 @Override
199199 protected List<?> userConverters() {
200- return Arrays.asList(new BooleanToStringConverter(), new StringToBooleanConverter());
200+ return Arrays.asList(new BooleanToStringConverter(), new StringToBooleanConverter());
201201 }
202202
203203}
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
182182----
183183class OrderItem {
184184
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;
188188
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+ }
194194
195- // getters/setters omitted
195+ // getters/setters omitted
196196}
197197----
You can’t perform that action at this time.
0 commit comments