From bd74d3636ef99b3aaada2c98d2c8fe306bba3082 Mon Sep 17 00:00:00 2001 From: Rodrigo Turini Date: Fri, 30 Aug 2013 21:14:36 -0300 Subject: [PATCH 1/2] ComponentRegistrationException deleted --- .../ioc/ComponentRegistrationException.java | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 vraptor-core/src/main/java/br/com/caelum/vraptor4/ioc/ComponentRegistrationException.java diff --git a/vraptor-core/src/main/java/br/com/caelum/vraptor4/ioc/ComponentRegistrationException.java b/vraptor-core/src/main/java/br/com/caelum/vraptor4/ioc/ComponentRegistrationException.java deleted file mode 100644 index b008029ad..000000000 --- a/vraptor-core/src/main/java/br/com/caelum/vraptor4/ioc/ComponentRegistrationException.java +++ /dev/null @@ -1,37 +0,0 @@ -/*** - * Copyright (c) 2009 Caelum - www.caelum.com.br/opensource - * All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * 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 br.com.caelum.vraptor4.ioc; - -import br.com.caelum.vraptor4.VRaptorException; - -/** - * @author: Fabio Kung - */ -@SuppressWarnings("serial") -public class ComponentRegistrationException extends VRaptorException { - public ComponentRegistrationException(Throwable e) { - super(e); - } - - public ComponentRegistrationException(String msg) { - super(msg); - } - - public ComponentRegistrationException(String msg, Throwable e) { - super(msg, e); - } -} From b3d8b4282dadee761f052a020ae04fb63001bd5b Mon Sep 17 00:00:00 2001 From: Rodrigo Turini Date: Fri, 30 Aug 2013 21:16:13 -0300 Subject: [PATCH 2/2] ScannedControllers deleted --- .../vraptor4/others/ScannedControllers.java | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 vraptor-core/src/main/java/br/com/caelum/vraptor4/others/ScannedControllers.java diff --git a/vraptor-core/src/main/java/br/com/caelum/vraptor4/others/ScannedControllers.java b/vraptor-core/src/main/java/br/com/caelum/vraptor4/others/ScannedControllers.java deleted file mode 100644 index fe791e72e..000000000 --- a/vraptor-core/src/main/java/br/com/caelum/vraptor4/others/ScannedControllers.java +++ /dev/null @@ -1,20 +0,0 @@ -package br.com.caelum.vraptor4.others; - -import java.util.LinkedList; -import java.util.List; - -import javax.enterprise.inject.Alternative; - -@Alternative -public class ScannedControllers { - - private final List> classes = new LinkedList>(); - - public void add(Class c) { - classes.add(c); - } - - public List> getClasses() { - return classes; - } -}