From e1c2e36c94a095efc6d20ad8ae359ab5f0887f3e Mon Sep 17 00:00:00 2001 From: Laurent Pireyn Date: Wed, 26 Nov 2014 10:12:54 +0100 Subject: [PATCH] Fix typo in Javadoc in ResultQuery --- jOOQ/src/main/java/org/jooq/ResultQuery.java | 36 ++++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/ResultQuery.java b/jOOQ/src/main/java/org/jooq/ResultQuery.java index 4d7fba0152..009ef7a8a7 100644 --- a/jOOQ/src/main/java/org/jooq/ResultQuery.java +++ b/jOOQ/src/main/java/org/jooq/ResultQuery.java @@ -317,7 +317,7 @@ public interface ResultQuery extends Query, Iterable { List fetch(String fieldName, Converter converter) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -331,7 +331,7 @@ public interface ResultQuery extends Query, Iterable { T fetchOne(Field field) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -345,7 +345,7 @@ public interface ResultQuery extends Query, Iterable { T fetchOne(Field field, Class type) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -360,7 +360,7 @@ public interface ResultQuery extends Query, Iterable { InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -374,7 +374,7 @@ public interface ResultQuery extends Query, Iterable { Object fetchOne(int fieldIndex) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -388,7 +388,7 @@ public interface ResultQuery extends Query, Iterable { T fetchOne(int fieldIndex, Class type) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -402,7 +402,7 @@ public interface ResultQuery extends Query, Iterable { U fetchOne(int fieldIndex, Converter converter) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -416,7 +416,7 @@ public interface ResultQuery extends Query, Iterable { Object fetchOne(String fieldName) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -430,7 +430,7 @@ public interface ResultQuery extends Query, Iterable { T fetchOne(String fieldName, Class type) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -535,7 +535,7 @@ public interface ResultQuery extends Query, Iterable { Z fetchOneInto(Table table) throws DataAccessException, InvalidResultException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -549,7 +549,7 @@ public interface ResultQuery extends Query, Iterable { T fetchAny(Field field) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -563,7 +563,7 @@ public interface ResultQuery extends Query, Iterable { T fetchAny(Field field, Class type) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -577,7 +577,7 @@ public interface ResultQuery extends Query, Iterable { U fetchAny(Field field, Converter converter) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -590,7 +590,7 @@ public interface ResultQuery extends Query, Iterable { Object fetchAny(int fieldIndex) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -603,7 +603,7 @@ public interface ResultQuery extends Query, Iterable { T fetchAny(int fieldIndex, Class type) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field index from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -617,7 +617,7 @@ public interface ResultQuery extends Query, Iterable { U fetchAny(int fieldIndex, Converter converter) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -630,7 +630,7 @@ public interface ResultQuery extends Query, Iterable { Object fetchAny(String fieldName) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then @@ -643,7 +643,7 @@ public interface ResultQuery extends Query, Iterable { T fetchAny(String fieldName, Class type) throws DataAccessException; /** - * Execute the query and return return at most one resulting value for a + * Execute the query and return at most one resulting value for a * field name from the generated result. *

* This is the same as calling {@link #fetchOne()} and then