()
| 1434 | } |
| 1435 | |
| 1436 | func (b *Builder) usingDynamicParameters() bool { |
| 1437 | tpl, err := b.getTemplate() |
| 1438 | if err != nil { |
| 1439 | return false // Let another part of the code get this error |
| 1440 | } |
| 1441 | if tpl.UseClassicParameterFlow { |
| 1442 | return false |
| 1443 | } |
| 1444 | |
| 1445 | return true |
| 1446 | } |
no test coverage detected