Remove Extension.FullName() from interface

- this was something I did in the original implementation of this improved extension update notification logic
- discovering other parts of the extension manager code that were working with non-prefixed extension names motivated a different approach
- the extension manager code that requires the extension be prefixed has been enhanced to use the centralized ensurePrefixed() logic, making the need for this on the extension unnecessary
This commit is contained in:
Andrew Feller 2024-12-08 20:01:26 -05:00
parent 97630fe73c
commit a55f50b115
8 changed files with 14 additions and 68 deletions

View file

@ -127,3 +127,7 @@ func (e *em) Create(_ string, _ extensions.ExtTemplateType) error {
}
func (e *em) EnableDryRunMode() {}
func (e *em) UpdateDir(_ string) string {
return ""
}