Retidied.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4372 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -110,7 +110,7 @@ public class Streamer
|
|||||||
createStreamers();
|
createStreamers();
|
||||||
}
|
}
|
||||||
|
|
||||||
Class target = getStreamerClass(object);
|
final Class target = getStreamerClass(object);
|
||||||
Streamer stream = _streamers.get(target);
|
Streamer stream = _streamers.get(target);
|
||||||
if (stream == null) {
|
if (stream == null) {
|
||||||
// make sure this is a streamable class
|
// make sure this is a streamable class
|
||||||
@@ -127,11 +127,10 @@ public class Streamer
|
|||||||
// create our streamer in a privileged block so that it can
|
// create our streamer in a privileged block so that it can
|
||||||
// introspect on the to be streamed class
|
// introspect on the to be streamed class
|
||||||
try {
|
try {
|
||||||
final Class ftarget = target;
|
|
||||||
stream = AccessController.doPrivileged(
|
stream = AccessController.doPrivileged(
|
||||||
new PrivilegedExceptionAction<Streamer>() {
|
new PrivilegedExceptionAction<Streamer>() {
|
||||||
public Streamer run () throws IOException {
|
public Streamer run () throws IOException {
|
||||||
return new Streamer(ftarget);
|
return new Streamer(target);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch (PrivilegedActionException pae) {
|
} catch (PrivilegedActionException pae) {
|
||||||
|
|||||||
Reference in New Issue
Block a user