[java-inspection] IDEA-364384 'Non-constant string as argument to ...' logging call has no quick fix if logger is returned from another method

- delete outdated test

GitOrigin-RevId: 7b7931cff9f06ec01a0c866fc7d28366a713127e
This commit is contained in:
Mikhail Pyltsin
2025-01-03 10:41:03 +00:00
committed by intellij-monorepo-bot
parent 37e1453aab
commit b859654754
@@ -1,10 +0,0 @@
import org.apache.logging.log4j.*;
class Log4jAmbitiousDefaultLogger {
public static void m(String a) {
getLogger().i<caret>nfo("12" + a);
}
public native Logger getLogger();
}