/src/away3d/library/naming/IgnoreConflictStrategy.as
http://github.com/away3d/away3d-core-fp11 · ActionScript · 23 lines · 19 code · 3 blank · 1 comment · 0 complexity · fa464f2d1a6ec3432d6a06510cd3ed4b MD5 · raw file
- package away3d.library.naming
- {
- import away3d.library.assets.IAsset;
-
- public class IgnoreConflictStrategy extends ConflictStrategyBase
- {
- public function IgnoreConflictStrategy()
- {
- super();
- }
-
- public override function resolveConflict(changedAsset:IAsset, oldAsset:IAsset, assetsDictionary:Object, precedence:String):void
- {
- // Do nothing, ignore the fact that there is a conflict.
- return;
- }
-
- public override function create():ConflictStrategyBase
- {
- return new IgnoreConflictStrategy();
- }
- }
- }