Skip to content

Commit

Permalink
iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
kemsky committed Dec 15, 2015
1 parent c59a8f4 commit 7f1ba23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/com/kemsky/support/TypeCache.as
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ package com.kemsky.support

public static function getQualifiedClassName(object:*):String
{
if(!(object is Class || object is XML) && object != null)
if(!(object is XML || object is Class) && object != null)
{
object = object.constructor;
}
Expand Down

0 comments on commit 7f1ba23

Please sign in to comment.