More small fixes (#977)

* no effecitve code change: add @FunctionalInterface to designated interfaces

* no effective code change: removed obsolete imports

* no effective code change: removed obsolete @SuppressWarnings

* no effective code change: add @SuppressWarnings to UUID_PLACEHOLDER
This commit is contained in:
Roland Praml
2017-02-24 08:42:27 +13:00
committed by Rob Bygrave
parent 35f3f53443
commit a315c7c11e
16 changed files with 10 additions and 13 deletions
@@ -195,7 +195,6 @@ public class CQuery<T> implements DbReadContext, CancelableQuery {
/**
* Create the Sql select based on the request.
*/
@SuppressWarnings("unchecked")
public CQuery(OrmQueryRequest<T> request, CQueryPredicates predicates, CQueryPlan queryPlan) {
this.request = request;
this.queryPlan = queryPlan;
@@ -537,7 +536,6 @@ public class CQuery<T> implements DbReadContext, CancelableQuery {
/**
* Read version beans and their effective dates.
*/
@SuppressWarnings("unchecked")
List<Version<T>> readVersions() throws SQLException {
List<Version<T>> versionList = new ArrayList<>();