Skip to content

Commit

Permalink
(#116) Fix Qulice's warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rocket-3 committed Nov 4, 2021
1 parent ce9db68 commit b2623da
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* The The DBD/schemas/#schema/tables/#table node mapping of
* Objects context and table DbObject.
* @since 0.1
* @checkstyle ClassDataAbstractionCouplingCheck (100 lines)
*/
public class DbdTableMappingOfObjects extends DbdTableMapping {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,20 @@
/**
* The DBD/sequences/#sequence/tables/#table node mapping.
* @since 0.1
* @checkstyle ClassDataAbstractionCouplingCheck (100 lines)
*/
public class DbdTableMappingWithChildObjects extends DbdTableMapping {

/**
* Instantiates a new Dbd table mapping of entries.
* @param table The table DbObject entry to take data from.
* @param indexes The Iterable of YamlMapping to be encapsulated.
* @param constraints The Iterable of YamlMapping to be encapsulated.
* @param indexes The Iterable of Text -> {@link DbdIndexMapping}
* entries to be encapsulated.
* @param constraints The Iterable of Text -> {@link DbdConstraintMapping}
* entries to be encapsulated.
* @param triggers The Iterable of Text -> {@link DbdTriggerMapping}
* entries to be encapsulated.
* @checkstyle ParameterNumberCheck (100 lines)
*/
public DbdTableMappingWithChildObjects(
final DbdTableMapping table,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/**
* The only type of {@link PgMessageFormatQuery} of {@link DbdTriggerFields}.
* @since 0.1
* @checkstyle StringLiteralsConcatenationCheck (100 lines)
*/
public class PgTriggersQuery extends PgMessageFormatQuery<DbdTriggerFields> {

Expand Down

0 comments on commit b2623da

Please sign in to comment.