Skip to content

Commit

Permalink
Cleaning up removal of impl package
Browse files Browse the repository at this point in the history
  • Loading branch information
LightGuard committed Oct 30, 2010
1 parent 8400e68 commit bd6fbbb
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
Expand Up @@ -20,7 +20,7 @@
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.seam.exception.control.impl;
package org.jboss.seam.exception.control;

import org.jboss.seam.exception.control.ExceptionHandler;

Expand Down
Expand Up @@ -19,7 +19,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.exception.control.impl;
package org.jboss.seam.exception.control;

import org.jboss.seam.exception.control.ExceptionEvent;
import org.jboss.seam.exception.control.ExceptionHandler;
Expand Down
Expand Up @@ -20,7 +20,7 @@
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.seam.exception.control.impl;
package org.jboss.seam.exception.control;

import org.jboss.seam.exception.control.HandlerChain;

Expand Down
Expand Up @@ -20,7 +20,7 @@
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.seam.exception.control.impl;
package org.jboss.seam.exception.control;

import org.jboss.seam.exception.control.ExceptionHandler;
import org.jboss.seam.exception.control.State;
Expand Down
Expand Up @@ -20,7 +20,7 @@
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.seam.exception.control.impl;
package org.jboss.seam.exception.control;

import org.jboss.seam.exception.control.State;

Expand Down
Expand Up @@ -23,8 +23,8 @@
package org.jboss.seam.exception.control.test;

import org.jboss.seam.exception.control.ExceptionHandler;
import org.jboss.seam.exception.control.ExceptionHandlerComparator;
import org.jboss.seam.exception.control.State;
import org.jboss.seam.exception.control.impl.ExceptionHandlerComparator;
import org.junit.Test;

import java.util.Arrays;
Expand Down
Expand Up @@ -24,9 +24,9 @@

import org.jboss.arquillian.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.seam.exception.control.impl.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.impl.StateImpl;
import org.jboss.seam.exception.control.ExceptionEvent;
import org.jboss.seam.exception.control.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.StateImpl;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePaths;
import org.jboss.shrinkwrap.api.ShrinkWrap;
Expand Down Expand Up @@ -56,9 +56,9 @@ public class MultipleHandlerTest extends BaseExceptionHandlerTest
public static Archive<?> createTestArchive()
{
return ShrinkWrap.create("test.jar", JavaArchive.class)
.addClasses(UnsupportedOperationExceptionHandler.class, ExceptionExceptionHandler.class,
ExceptionHandlerExecutor.class, NullPointerExceptionHandler.class)
.addManifestResource(new ByteArrayAsset(new byte[0]), ArchivePaths.create("beans.xml"));
.addClasses(UnsupportedOperationExceptionHandler.class, ExceptionExceptionHandler.class,
ExceptionHandlerExecutor.class, NullPointerExceptionHandler.class)
.addManifestResource(new ByteArrayAsset(new byte[0]), ArchivePaths.create("beans.xml"));
}

@Test
Expand Down
Expand Up @@ -25,8 +25,8 @@
import org.jboss.arquillian.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.seam.exception.control.ExceptionEvent;
import org.jboss.seam.exception.control.impl.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.impl.StateImpl;
import org.jboss.seam.exception.control.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.StateImpl;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePaths;
import org.jboss.shrinkwrap.api.ShrinkWrap;
Expand Down
Expand Up @@ -24,8 +24,8 @@
import org.jboss.arquillian.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.seam.exception.control.ExceptionEvent;
import org.jboss.seam.exception.control.impl.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.impl.StateImpl;
import org.jboss.seam.exception.control.ExceptionHandlerExecutor;
import org.jboss.seam.exception.control.StateImpl;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePaths;
import org.jboss.shrinkwrap.api.ShrinkWrap;
Expand Down

0 comments on commit bd6fbbb

Please sign in to comment.