Commit f0f934d
committed
fix: replace wildcard import with specific UUID import in AbstractResourceConfig
The PR #703 introduced a wildcard import (import java.util.*) in
AbstractResourceConfig.kt, which was unnecessary since only UUID is used.
This commit fixes the import to use the specific class import
(import java.util.UUID) while preserving all the intended functionality
from PR #703:
- Added 'log' property to resources and interceptors
- Implementation of custom log message processing with template support
- Tests for resource and interceptor logging
- Documentation updates
This fix ensures the build passes while maintaining the new logging
feature's functionality.1 parent 678d5a2 commit f0f934d
File tree
1 file changed
+1
-1
lines changed- core/api/src/main/java/io/gatehill/imposter/plugin/config/resource
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
0 commit comments