API changes

This commit is contained in:
Alex Yatskov 2015-10-29 21:40:59 +09:00
parent 3883d1dedc
commit be7d133c12
2 changed files with 2 additions and 8 deletions

View File

@ -91,10 +91,6 @@ func (gs *goldsmith) AbsDstPath(path string) string {
}
func (gs *goldsmith) Apply(p Processor) Applier {
return gs.ApplyTo(p, "*")
}
func (gs *goldsmith) ApplyTo(p Processor, pattern string) Applier {
s := gs.stage()
gs.wg.Add(1)
@ -106,7 +102,6 @@ func (gs *goldsmith) ApplyTo(p Processor, pattern string) Applier {
return gs
}
func (gs *goldsmith) Wait() Applier {
func (gs *goldsmith) Complete() {
gs.wg.Wait()
return gs
}

View File

@ -38,6 +38,5 @@ type Processor interface {
type Applier interface {
Apply(p Processor) Applier
ApplyTo(p Processor, pattern string) Applier
Wait() Applier
Complete()
}