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 a96d6ec commit 2a4f433
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

1 comment on commit 2a4f433

@0pdd
Copy link

@0pdd 0pdd commented on 2a4f433 Nov 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 101-36be612f disappeared from src/main/java/org/fusionsoft/database/snapshot/objects/dbms/postgres/PgTriggers.java, that's why I closed #116. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

Please sign in to comment.