Skip to content

Commit d423658

Browse files
committed
• Making sure that nil doesn't get passed to the directorylocation method
1 parent 00974db commit d423658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Support/lib/as3/parsers/class_parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ def create_src_list
504504
# otherwise go looking for the sdk.
505505
unless add_src_dir("#{cs}/frameworks/flex_3")
506506
fx = FlexMate::SDK.src
507-
add_src_dir(fx)
507+
add_src_dir(fx) unless fx.nil?
508508
end
509509

510510
#log_append( "src_dirs " + @src_dirs )

0 commit comments

Comments
 (0)