[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:
parent
07f9ad9ed8
commit
fbc4b335af
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user