QualifiedName is a no-op for the null handler. A error message is logged inidicating this should never be called for the null handler.
(class string, id string)
| 42 | // QualifiedName is a no-op for the null handler. A error message is logged |
| 43 | // inidicating this should never be called for the null handler. |
| 44 | func (n *null) QualifiedName(class string, id string) string { |
| 45 | klog.Error("cannot return a qualified CDI device name with the null CDI handler") |
| 46 | return "" |
| 47 | } |