IDEA-152033 Suggest current class for Class<?> parameter (for logging-related stuff)

This commit is contained in:
peter
2016-02-24 13:59:25 +01:00
parent eed9e7e7fb
commit f567f9d2f8
3 changed files with 12 additions and 1 deletions
@@ -0,0 +1,7 @@
public class Foo {
public static final Logger LOG = LoggerFactory.getLogger(<caret>)
}
class LoggerFactory {
static Logger getLogger(Class<?> c) {}
}