appease deadcode linter

This commit is contained in:
Mahmood Ali
2020-11-12 11:44:49 -05:00
parent a673b8a2bd
commit f1f473f9a6
2 changed files with 5 additions and 4 deletions

5
jobspec2/helper_test.go Normal file
View File

@@ -0,0 +1,5 @@
package jobspec2
func intToPtr(v int) *int {
return &v
}

View File

@@ -113,10 +113,6 @@ func normalizeTemplates(templates []*api.Template) {
}
}
func intToPtr(v int) *int {
return &v
}
func int8ToPtr(v int8) *int8 {
return &v
}