(no commit message)
[utils] / support / general / src / main / java / org / wamblee / observer / Observable.java
index 5c2e9a4f2ca5fe5c51710d568af35bc100fd669b..f31ba0dc485d1b839ceb8e354c9d0d0e15f657e5 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.observer;
 
-import org.apache.log4j.Logger;
-
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
@@ -27,8 +25,6 @@ import java.util.TreeMap;
  * class is thread safe.
  */
 public class Observable<ObservableType, Event> {
-    private static final Logger LOGGER = Logger.getLogger(Observable.class);
-
     /**
      * Observable.
      */