(user: User | null)
| 31 | } |
| 32 | |
| 33 | public setUser(user: User | null) { |
| 34 | this.user = user; |
| 35 | const login = user ? user.login : null; |
| 36 | for (let i = 0; i < this.timeline.length; i++) { |
| 37 | this.timeline[i].setCurrentUser(login); |
| 38 | } |
| 39 | scheduleMeasure(); |
| 40 | } |
| 41 | |
| 42 | public setIssue(issue: Issue | null) { |
| 43 | this.issue = issue; |
nothing calls this directly
no test coverage detected