comparison pkg/imports/bn.go @ 1676:4407ecaa2192

Imports: Cosmetics.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 26 Dec 2018 10:30:19 +0100
parents 819f67c31dfb
children be78b429ef6e
comparison
equal deleted inserted replaced
1675:8fec3887c7e5 1676:4407ecaa2192
116 _, err := tx.ExecContext(ctx, bnStageDoneSQL, id) 116 _, err := tx.ExecContext(ctx, bnStageDoneSQL, id)
117 return err 117 return err
118 } 118 }
119 119
120 // CleanUp of a bottleneck import is a NOP. 120 // CleanUp of a bottleneck import is a NOP.
121 func (bn *Bottleneck) CleanUp() error { return nil } 121 func (*Bottleneck) CleanUp() error { return nil }
122 122
123 var rblbRe = regexp.MustCompile(`(..)_(..)`) 123 var rblbRe = regexp.MustCompile(`(..)_(..)`)
124 124
125 func splitRBLB(s string) (string, string) { 125 func splitRBLB(s string) (string, string) {
126 m := rblbRe.FindStringSubmatch(s) 126 m := rblbRe.FindStringSubmatch(s)