[jOOQ/jOOQ#10210] Improved API generation

- Removed SuppressWarnings rawtypes when there are no generic types
- Removed SuppressWarnings unchecked when generic types use wildcards
- Removed SuppressWarnings hiding when there are no step args
This commit is contained in:
Lukas Eder 2020-05-27 19:49:00 +02:00
parent 07f9ad9ed8
commit fbc4b335af
4 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ import java.util.*;
/**
* The <code>ALTER DATABASE IF EXISTS</code> statement.
*/
@SuppressWarnings({ "hiding", "rawtypes", "unchecked", "unused" })
@SuppressWarnings({ "hiding", "unused" })
final class AlterDatabaseImpl
extends
AbstractRowCountQuery

View File

@ -49,7 +49,7 @@ import java.util.*;
/**
* The <code>CREATE DATABASE IF NOT EXISTS</code> statement.
*/
@SuppressWarnings({ "hiding", "rawtypes", "unchecked", "unused" })
@SuppressWarnings({ "unused" })
final class CreateDatabaseImpl
extends
AbstractRowCountQuery

View File

@ -49,7 +49,7 @@ import java.util.*;
/**
* The <code>DROP DATABASE IF EXISTS</code> statement.
*/
@SuppressWarnings({ "hiding", "rawtypes", "unchecked", "unused" })
@SuppressWarnings({ "unused" })
final class DropDatabaseImpl
extends
AbstractRowCountQuery

View File

@ -49,7 +49,7 @@ import java.util.*;
/**
* The <code>DROP DOMAIN IF EXISTS</code> statement.
*/
@SuppressWarnings({ "hiding", "rawtypes", "unchecked", "unused" })
@SuppressWarnings({ "rawtypes", "unused" })
final class DropDomainImpl
extends
AbstractRowCountQuery