Commit b7e0ff45 by Michael Koch Committed by Michael Koch

Class.h (hack_signers): Renamed signers to hack_signers.

2003-12-03  Michael Koch  <konqueror@gmx.de>

	* java/lang/Class.h (hack_signers): Renamed signers to hack_signers.
	* java/lang/natClass.cc (getSigners): Likewise.
	(setSigners): Likewise.

From-SVN: r74247
parent 02972627
2003-12-03 Michael Koch <konqueror@gmx.de>
* java/lang/Class.h (hack_signers): Renamed signers to hack_signers.
* java/lang/natClass.cc (getSigners): Likewise.
(setSigners): Likewise.
2003-12-02 Mohan Embar <gnustuff@thisiscool.com>
* configure.in: Added new MinGW-specific configure flag
......
......@@ -446,7 +446,7 @@ private:
// Security Domain to which this class belongs (or null).
java::security::ProtectionDomain *protectionDomain;
// Signers of this class (or null).
JArray<jobject> *signers;
JArray<jobject> *hack_signers;
// Used by Jv_PopClass and _Jv_PushClass to communicate with StackTrace.
jclass chain;
};
......
......@@ -1502,13 +1502,13 @@ java::lang::Class::getProtectionDomain0 ()
JArray<jobject> *
java::lang::Class::getSigners()
{
return signers;
return hack_signers;
}
void
java::lang::Class::setSigners(JArray<jobject> *s)
{
signers = s;
hack_signers = s;
}
// Functions for indirect dispatch (symbolic virtual binding) support.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment