Spring cleaning: avoid unnecessary static imports

This commit is contained in:
Sam Brannen
2024-02-23 11:54:15 +01:00
parent 4bd1485ce4
commit d0ffc16efc
3 changed files with 3 additions and 6 deletions

View File

@@ -17,10 +17,9 @@
package org.springframework.aot;
import org.springframework.core.NativeDetector;
import org.springframework.core.NativeDetector.Context;
import org.springframework.core.SpringProperties;
import static org.springframework.core.NativeDetector.Context;
/**
* Utility for determining if AOT-processed optimizations must be used rather
* than the regular runtime. Strictly for internal use within the framework.