Repository: deltaspike
Updated Branches:
  refs/heads/master 6d821c355 -> 4944bb90f


DELTASPIKE-541 Remove errant source directory

Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/4944bb90
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/4944bb90
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/4944bb90

Branch: refs/heads/master
Commit: 4944bb90f0760baf9e6067e270ba3b2a2007a2fe
Parents: 6d821c3
Author: tandraschko <tandrasc...@apache.org>
Authored: Sun Mar 16 15:20:35 2014 +0100
Committer: tandraschko <tandrasc...@apache.org>
Committed: Sun Mar 16 15:20:35 2014 +0100

----------------------------------------------------------------------
 .../deltaspike/core/api/common/DeltaSpike.java  | 41 --------------------
 .../core/api/literal/DeltaSpikeLiteral.java     | 32 ---------------
 2 files changed, 73 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/4944bb90/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/common/DeltaSpike.java
----------------------------------------------------------------------
diff --git 
a/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/common/DeltaSpike.java
 
b/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/common/DeltaSpike.java
deleted file mode 100644
index 5811fa1..0000000
--- 
a/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/common/DeltaSpike.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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 org.apache.deltaspike.core.api.common;
-
-import java.lang.annotation.Documented;
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.ElementType.TYPE;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import javax.inject.Qualifier;
-
-/**
- * Common qualifier to manage co-existence of DeltaSpike features and JavaEE 
features.
- */
-@Target( { TYPE, METHOD, PARAMETER, FIELD })
-@Retention(value = RetentionPolicy.RUNTIME)
-@Documented
-@Qualifier
-public @interface DeltaSpike
-{
-
-}

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/4944bb90/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/DeltaSpikeLiteral.java
----------------------------------------------------------------------
diff --git 
a/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/DeltaSpikeLiteral.java
 
b/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/DeltaSpikeLiteral.java
deleted file mode 100644
index 8d9c251..0000000
--- 
a/deltaspike/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/DeltaSpikeLiteral.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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 org.apache.deltaspike.core.api.literal;
-
-import javax.enterprise.util.AnnotationLiteral;
-import org.apache.deltaspike.core.api.common.DeltaSpike;
-
-/**
- * Literal for the {@link org.apache.deltaspike.core.api.common.DeltaSpike} 
annotation.
- */
-public class DeltaSpikeLiteral extends AnnotationLiteral<DeltaSpike> 
implements DeltaSpike
-{
-    public static final DeltaSpike INSTANCE = new DeltaSpikeLiteral();
-    
-    private static final long serialVersionUID = 1835916508118085812L;
-}

Reply via email to