Skip to content

Commit

Permalink
Fix checkstyle violations
Browse files Browse the repository at this point in the history
  • Loading branch information
heshanpadmasiri committed Aug 2, 2024
1 parent e27ccd5 commit f9f358e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private record BTypeParts(SemType semTypePart, List<Type> bTypeParts) {
private static BTypeParts split(Context cx, Type type) {
if (type instanceof SemType) {
return new BTypeParts(from(cx, type), Collections.emptyList());
// FIXME:
// TODO:
} else if (type instanceof BXmlType) {
return new BTypeParts(from(cx, type), Collections.emptyList());
} else if (type instanceof BUnionType unionType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public Optional<IntersectionType> getIntersectionType() {
return this.intersectionType == null ? Optional.empty() : Optional.of(this.intersectionType);
}

// FIXME: this class must also be a semtype class
// TODO: this class must also be a semtype class
@Override
SemType createSemType(Context cx) {
SemType semType;
Expand Down

0 comments on commit f9f358e

Please sign in to comment.