Skip to content

Commit

Permalink
Forgot to commit ChangeFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed Jul 8, 2024
1 parent 25cfc46 commit f91237b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/codetracker/change/ChangeFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public static ChangeFactory forBlock(Change.Type type) {
return new ChangeFactory(type, "block");
}

public static ChangeFactory forComment(Change.Type type) {
return new ChangeFactory(type, "comment");
}

public static ChangeFactory forAttribute(Change.Type type) {
return new ChangeFactory(type, "attribute");
}
Expand Down

0 comments on commit f91237b

Please sign in to comment.