File tree 2 files changed +3
-2
lines changed
src/main/java/com/github/davidmoten/rx/jdbc
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 20
20
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
21
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
22
22
<scm .url>scm:git:https://github.com/davidmoten/rxjava-jdbc.git</scm .url>
23
- <maven .compiler.target>1.7 </maven .compiler.target>
23
+ <maven .compiler.target>1.8 </maven .compiler.target>
24
24
<rxjava .version>1.3.8</rxjava .version>
25
25
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
26
26
<checkstyle .version>3.3.1</checkstyle .version>
Original file line number Diff line number Diff line change @@ -136,9 +136,10 @@ public Observable<T> call(List<Parameter> params) {
136
136
* one set of parameters to be run with the query
137
137
* @return
138
138
*/
139
+ @ SuppressWarnings ("unchecked" )
139
140
private <T > Observable <T > executeOnce (final List <Parameter > params ,
140
141
ResultSetMapper <? extends T > function ) {
141
- return QuerySelectOnSubscribe .execute (this , params , function )
142
+ return ( Observable < T >) QuerySelectOnSubscribe .execute (this , params , function )
142
143
.subscribeOn (context .scheduler ());
143
144
}
144
145
You can’t perform that action at this time.
0 commit comments