Skip to content

Commit

Permalink
#118 core 91, storage 72
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Aug 28, 2021
1 parent bafaf2e commit 05d4f9b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<self.core.version>0.0.89</self.core.version>
<self.storage.version>0.0.71</self.storage.version>
<self.core.version>0.0.91</self.core.version>
<self.storage.version>0.0.72</self.storage.version>
</properties>

<dependencies>
Expand Down
10 changes: 9 additions & 1 deletion src/main/java/com/selfxdsd/selfpm/ReviewAssignedTasks.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public String type() {
public Issue issue() {
throw new UnsupportedOperationException(
"No Issue in the " + Type.ASSIGNED_TASKS
+ " event."
+ " event."
);
}

Expand All @@ -115,6 +115,14 @@ public Commit commit() {
);
}

@Override
public String repoNewName() {
throw new UnsupportedOperationException(
"No Repo new name in the "
+ Type.ASSIGNED_TASKS + " event."
);
}

@Override
public Project project() {
return project;
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/com/selfxdsd/selfpm/ReviewUnassignedTasks.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,14 @@ public Commit commit() {
);
}

@Override
public String repoNewName() {
throw new UnsupportedOperationException(
"No Repo new name in the "
+ Type.UNASSIGNED_TASKS + " event."
);
}

@Override
public Project project() {
return project;
Expand Down

1 comment on commit 05d4f9b

@zoeself
Copy link
Collaborator

Choose a reason for hiding this comment

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

@amihaiemil I've opened the Issues [#120, #121] for the newly added to-dos.

The to-dos may have been added in an earlier commit, but I've found them just now.

Please sign in to comment.