From c1d0070455d167da02277dc8a2854463a4c90d30 Mon Sep 17 00:00:00 2001 From: Till Schneidereit Date: Tue, 1 Dec 2009 16:45:53 +0100 Subject: [PATCH] Removed old classes --- .../injectionresults/IInjectionResult.as | 14 ------------- .../injectionresults/InjectNullResult.as | 21 ------------------- 2 files changed, 35 deletions(-) delete mode 100644 src/org/swiftsuspenders/injectionresults/IInjectionResult.as delete mode 100644 src/org/swiftsuspenders/injectionresults/InjectNullResult.as diff --git a/src/org/swiftsuspenders/injectionresults/IInjectionResult.as b/src/org/swiftsuspenders/injectionresults/IInjectionResult.as deleted file mode 100644 index 7bf7bf6..0000000 --- a/src/org/swiftsuspenders/injectionresults/IInjectionResult.as +++ /dev/null @@ -1,14 +0,0 @@ -/* -* Copyright (c) 2009 the original author or authors -* -* Permission is hereby granted to use, modify, and distribute this file -* in accordance with the terms of the license agreement accompanying it. -*/ - -package org.swiftsuspenders.injectionresults -{ - public interface IInjectionResult - { - function getResponse() : Object; - } -} \ No newline at end of file diff --git a/src/org/swiftsuspenders/injectionresults/InjectNullResult.as b/src/org/swiftsuspenders/injectionresults/InjectNullResult.as deleted file mode 100644 index d607620..0000000 --- a/src/org/swiftsuspenders/injectionresults/InjectNullResult.as +++ /dev/null @@ -1,21 +0,0 @@ -/* -* Copyright (c) 2009 the original author or authors -* -* Permission is hereby granted to use, modify, and distribute this file -* in accordance with the terms of the license agreement accompanying it. -*/ - -package org.swiftsuspenders.injectionresults -{ - import flash.utils.Dictionary; - - import org.swiftsuspenders.Injector; - - public class InjectNullResult implements IInjectionResult - { - public function getResponse() : Object - { - return {}; - } - } -} \ No newline at end of file