Created
October 21, 2010 20:33
-
-
Save debreuil/639290 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override public function areObjectsEqual(accountVO1:AdminDataVO, accountVO2:AdminDataVO):Boolean | |
{ | |
var result:Boolean = false; | |
if( (accountVO1.password == accountVO2.password ) && | |
(accountVO1.email == accountVO2.email ) && | |
(accountVO1.serverID == accountVO2.serverID ) && | |
(accountVO1.dataSetID == accountVO2.dataSetID ) && | |
(accountVO1.pluginMixID == accountVO2.pluginMixID ) && | |
(accountVO1.adminPluginMixID == accountVO2.adminPluginMixID ) && | |
(accountVO1.isSuspended == accountVO2.isSuspended )) | |
{ | |
result = true; | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment