()
| 68 | */ |
| 69 | // Warning: I'm not sure whether this actually solves the issue. Might be a good idea to remove this. |
| 70 | clone(): CommitBuilder { |
| 71 | const cm = new CommitBuilder(this.subject); |
| 72 | cm.set = this.set; |
| 73 | cm.destroy = this.destroy; |
| 74 | cm.remove = this.remove; |
| 75 | return cm; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | /** A {@link Commit} without its signature, but with a signer and timestamp */ |