Use of Static Class methods

Post here your questions about Actionscript and Java server side extensions development.

Moderators: Lapo, Bax

Post Reply
mmilen
Posts: 311
Joined: 09 Nov 2010, 00:48
Contact:

Use of Static Class methods

Post by mmilen »

Hi Guys / Gals,

I use a number of static helper methods like the one below. Is there any performance or thread safety issues with that approach.

Code: Select all

public static boolean isMasterTeacher (User p) {
		return p.containsProperty(SFSVAR.SFSGAME_PROPERTY_MASTER_TEACHER);
 } 

Thank you for the great service.
User avatar
Lapo
Site Admin
Posts: 23438
Joined: 21 Mar 2005, 09:50
Location: Italy

Re: Use of Static Class methods

Post by Lapo »

Hi,
no, I don't see any problem with that.

Cheers
Lapo
--
gotoAndPlay()
...addicted to flash games
Post Reply