support Class<?> in loggers (IDEA-105064)

This commit is contained in:
peter
2013-10-18 22:43:12 +02:00
parent c9c171a271
commit 06ee80f144
4 changed files with 24 additions and 18 deletions
@@ -0,0 +1,7 @@
public class Foo {
public static final Logger LOG = Logger.getInstance(<caret>)
}
class Logger {
static Logger getInstance(Class<?> c) {}
}