-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace CR by LF in 3 files that used CR as line ending
- Loading branch information
Showing
3 changed files
with
97 additions
and
3 deletions.
There are no files selected for viewing
21 changes: 20 additions & 1 deletion
21
...in/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/BlackWidow.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
/* * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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 org.jboss.cdi.tck.tests.implementation.producer.method.definition;class BlackWidow extends Spider implements DeadlySpider {} | ||
/* | ||
* Copyright 2010, Red Hat, Inc., and individual contributors | ||
* by the @authors tag. See the copyright.txt in the distribution for a | ||
* full listing of individual contributors. | ||
* | ||
* 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 org.jboss.cdi.tck.tests.implementation.producer.method.definition; | ||
|
||
class BlackWidow extends Spider implements DeadlySpider { | ||
|
||
} |
40 changes: 39 additions & 1 deletion
40
...in/java/org/jboss/cdi/tck/tests/lookup/circular/DependentSelfConsumingNormalProducer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,39 @@ | ||
/* * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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 org.jboss.cdi.tck.tests.lookup.circular;import jakarta.enterprise.context.ApplicationScoped;import jakarta.enterprise.context.Dependent;import jakarta.enterprise.inject.Produces;import jakarta.inject.Inject;@Dependentpublic class DependentSelfConsumingNormalProducer { @Inject @SelfConsumingNormal1 Violation violation; @Produces @ApplicationScoped @SelfConsumingNormal1 public Violation produceViolation() { return new Violation(DependentSelfConsumingNormalProducer.class.getName()); } public void ping() { violation.ping(); }} | ||
/* | ||
* Copyright 2010, Red Hat, Inc., and individual contributors | ||
* by the @authors tag. See the copyright.txt in the distribution for a | ||
* full listing of individual contributors. | ||
* | ||
* 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 org.jboss.cdi.tck.tests.lookup.circular; | ||
|
||
import jakarta.enterprise.context.ApplicationScoped; | ||
import jakarta.enterprise.context.Dependent; | ||
import jakarta.enterprise.inject.Produces; | ||
import jakarta.inject.Inject; | ||
|
||
@Dependent | ||
public class DependentSelfConsumingNormalProducer { | ||
@Inject | ||
@SelfConsumingNormal1 | ||
Violation violation; | ||
|
||
@Produces | ||
@ApplicationScoped | ||
@SelfConsumingNormal1 | ||
public Violation produceViolation() { | ||
return new Violation(DependentSelfConsumingNormalProducer.class.getName()); | ||
} | ||
|
||
public void ping() { | ||
violation.ping(); | ||
} | ||
} |
39 changes: 38 additions & 1 deletion
39
.../main/java/org/jboss/cdi/tck/tests/lookup/circular/NormalSelfConsumingNormalProducer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,38 @@ | ||
/* * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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 org.jboss.cdi.tck.tests.lookup.circular;import jakarta.enterprise.context.ApplicationScoped;import jakarta.enterprise.inject.Produces;import jakarta.inject.Inject;@ApplicationScopedpublic class NormalSelfConsumingNormalProducer { @Inject @SelfConsumingNormal Violation violation; @Produces @ApplicationScoped @SelfConsumingNormal public Violation produceViolation() { return new Violation(NormalSelfConsumingNormalProducer.class.getName()); } public void ping() { violation.ping(); }} | ||
/* | ||
* Copyright 2010, Red Hat, Inc., and individual contributors | ||
* by the @authors tag. See the copyright.txt in the distribution for a | ||
* full listing of individual contributors. | ||
* | ||
* 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 org.jboss.cdi.tck.tests.lookup.circular; | ||
|
||
import jakarta.enterprise.context.ApplicationScoped; | ||
import jakarta.enterprise.inject.Produces; | ||
import jakarta.inject.Inject; | ||
|
||
@ApplicationScoped | ||
public class NormalSelfConsumingNormalProducer { | ||
@Inject | ||
@SelfConsumingNormal | ||
Violation violation; | ||
|
||
@Produces | ||
@ApplicationScoped | ||
@SelfConsumingNormal | ||
public Violation produceViolation() { | ||
return new Violation(NormalSelfConsumingNormalProducer.class.getName()); | ||
} | ||
|
||
public void ping() { | ||
violation.ping(); | ||
} | ||
} |