Use a method available since JDK1.1 to determine our innerness and simplify the

logic. If we're inner and we're not static, we have a problem.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5019 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-04-23 19:58:16 +00:00
parent 290d7a9ea1
commit 9700aa13cd
+6 -10
View File
@@ -422,19 +422,15 @@ public class Streamer
// keep a handle on the class
_target = target;
// if this is a non-anonymous inner class, freak out because we cannot stream those
boolean isLocal = false, isAnon = false, isNSMember = false;
// but don't freak out if we can't find out if this is a non-anonymous inner class;
// production code running on old VMs should be left to do its thing
// if this is a non-static inner class, freak out because we cannot stream those
boolean isInner = false, isStatic = Modifier.isStatic(_target.getModifiers());
try {
isLocal = _target.isLocalClass();
isAnon = _target.isAnonymousClass();
isNSMember = _target.isMemberClass() && !Modifier.isStatic(_target.getModifiers());
isInner = (_target.getDeclaringClass() != null);
} catch (Throwable t) {
log.info("Failure checking non-anonymous-innerness of class " +
"[class=" + _target.getName() + ", error=" + t + "].");
log.info("Failure checking innerness of class [class=" + _target.getName() +
", error=" + t + "].");
}
if (isLocal || isAnon || isNSMember) {
if (isInner && !isStatic) {
throw new IllegalArgumentException(
"Cannot stream non-static inner class: " + _target.getName());
}