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
This commit is contained in:
Michael Koch 2003-12-03 21:26:59 +00:00 committed by Michael Koch
parent 02972627ab
commit b7e0ff4538
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
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> 2003-12-02 Mohan Embar <gnustuff@thisiscool.com>
* configure.in: Added new MinGW-specific configure flag * configure.in: Added new MinGW-specific configure flag

View File

@ -446,7 +446,7 @@ private:
// Security Domain to which this class belongs (or null). // Security Domain to which this class belongs (or null).
java::security::ProtectionDomain *protectionDomain; java::security::ProtectionDomain *protectionDomain;
// Signers of this class (or null). // Signers of this class (or null).
JArray<jobject> *signers; JArray<jobject> *hack_signers;
// Used by Jv_PopClass and _Jv_PushClass to communicate with StackTrace. // Used by Jv_PopClass and _Jv_PushClass to communicate with StackTrace.
jclass chain; jclass chain;
}; };

View File

@ -1502,13 +1502,13 @@ java::lang::Class::getProtectionDomain0 ()
JArray<jobject> * JArray<jobject> *
java::lang::Class::getSigners() java::lang::Class::getSigners()
{ {
return signers; return hack_signers;
} }
void void
java::lang::Class::setSigners(JArray<jobject> *s) java::lang::Class::setSigners(JArray<jobject> *s)
{ {
signers = s; hack_signers = s;
} }
// Functions for indirect dispatch (symbolic virtual binding) support. // Functions for indirect dispatch (symbolic virtual binding) support.