Skip to content

Commit

Permalink
feat(objectionary#946): add one more puzzle
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jan 13, 2025
1 parent 057dc6c commit e70bc5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,13 @@ ClassName className() {
* @return Prefixed package name.
*/
private Directives pckg() {
final Directives result;
final String prefixed = new PrefixedName(this.name.pckg()).encode();
result = new Directives()
return new Directives()
.add("meta")
.add("head").set("package").up()
.add("tail").set(prefixed).up()
.add("part").set(prefixed).up()
.up();
return result;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ public boolean hasAttribute(final String name, final String value) {

@Override
public void validate() {
//@checkstyle MethodBodyCommentsCheck (10 lines)
//@todo #946:30min Remove the ignore list from the 'validate' method.
// The ignore list is used to ignore some defects that we haven't implemented yet.
// We should remove the ignore list and fix the defects that are being ignored.
final Collection<String> ignore = new HashSet<>(
Arrays.asList(
"mandatory-home",
Expand Down

0 comments on commit e70bc5c

Please sign in to comment.