mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	clean unused function
This commit is contained in:
		@@ -234,15 +234,6 @@ func rpad(s string, padding int) string {
 | 
				
			|||||||
	return fmt.Sprintf(template, s)
 | 
						return fmt.Sprintf(template, s)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func indentLines(s string, indentation int) string {
 | 
					 | 
				
			||||||
	r := []string{}
 | 
					 | 
				
			||||||
	for _, line := range strings.Split(s, "\n") {
 | 
					 | 
				
			||||||
		indented := strings.Repeat(" ", indentation) + line
 | 
					 | 
				
			||||||
		r = append(r, indented)
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return strings.Join(r, "\n")
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
func appendIfNotPresent(s, stringToAppend string) string {
 | 
					func appendIfNotPresent(s, stringToAppend string) string {
 | 
				
			||||||
	if strings.Contains(s, stringToAppend) {
 | 
						if strings.Contains(s, stringToAppend) {
 | 
				
			||||||
		return s
 | 
							return s
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user