The source project of this merge request has been removed.
Iss. #65 - Fix error caused by no project match in validation req
1 unresolved thread
Compare changes
Files
2@@ -15,6 +15,7 @@ import java.util.stream.Collectors;
@@ -63,10 +64,22 @@ public class CommitHelper {
why not making
Project#getProjectId
returning anOptional<String>
instead? It would prevent forgetting from calling the CommitHelper#getProjectId static method.I did it that way so that downstream wouldn't need to know that the default is never null. This way if its null, it passes back empty string.