mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Revert removed method
This commit is contained in:
parent
1262ae92e9
commit
ff8c430ff0
1 changed files with 6 additions and 0 deletions
|
@ -120,6 +120,12 @@ func (d *Dispenser) NextBlock() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IncrNest adds a level of nesting to the dispenser.
|
||||||
|
func (d *Dispenser) IncrNest() {
|
||||||
|
d.nesting++
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// Val gets the text of the current token. If there is no token
|
// Val gets the text of the current token. If there is no token
|
||||||
// loaded, it returns empty string.
|
// loaded, it returns empty string.
|
||||||
func (d *Dispenser) Val() string {
|
func (d *Dispenser) Val() string {
|
||||||
|
|
Loading…
Reference in a new issue