We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0d23b commit 31f0d96Copy full SHA for 31f0d96
mug-guava/src/main/java/com/google/mu/safesql/SafeSql.java
@@ -793,9 +793,7 @@ public SafeSql orElse(Supplier<SafeSql> fallback) {
793
* .query(connection, String.class);
794
* }</pre>
795
*
796
- * <p>You can also map the result rows to Java Beans, like:
797
- *
798
- * <p>For example: <pre>{@code
+ * <p>You can also map the result rows to Java Beans, for example: <pre>{@code
799
* List<UserBean> users =
800
* SafeSql.of("SELECT id, name FROM Users WHERE name LIKE '%{name}%'", name)
801
* .query(connection, UserBean.class);
0 commit comments