Skip to content

Commit 046e78e

Browse files
committed
replace CR by LF in 3 files that used CR as line ending
1 parent 7df1bd4 commit 046e78e

File tree

3 files changed

+97
-3
lines changed

3 files changed

+97
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
/* * 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 {}
1+
/*
2+
* Copyright 2010, Red Hat, Inc., and individual contributors
3+
* by the @authors tag. See the copyright.txt in the distribution for a
4+
* full listing of individual contributors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.jboss.cdi.tck.tests.implementation.producer.method.definition;
17+
18+
class BlackWidow extends Spider implements DeadlySpider {
19+
20+
}
Original file line numberDiff line numberDiff line change
@@ -1 +1,39 @@
1-
/* * 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(); }}
1+
/*
2+
* Copyright 2010, Red Hat, Inc., and individual contributors
3+
* by the @authors tag. See the copyright.txt in the distribution for a
4+
* full listing of individual contributors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.jboss.cdi.tck.tests.lookup.circular;
17+
18+
import jakarta.enterprise.context.ApplicationScoped;
19+
import jakarta.enterprise.context.Dependent;
20+
import jakarta.enterprise.inject.Produces;
21+
import jakarta.inject.Inject;
22+
23+
@Dependent
24+
public class DependentSelfConsumingNormalProducer {
25+
@Inject
26+
@SelfConsumingNormal1
27+
Violation violation;
28+
29+
@Produces
30+
@ApplicationScoped
31+
@SelfConsumingNormal1
32+
public Violation produceViolation() {
33+
return new Violation(DependentSelfConsumingNormalProducer.class.getName());
34+
}
35+
36+
public void ping() {
37+
violation.ping();
38+
}
39+
}
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
1-
/* * 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(); }}
1+
/*
2+
* Copyright 2010, Red Hat, Inc., and individual contributors
3+
* by the @authors tag. See the copyright.txt in the distribution for a
4+
* full listing of individual contributors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.jboss.cdi.tck.tests.lookup.circular;
17+
18+
import jakarta.enterprise.context.ApplicationScoped;
19+
import jakarta.enterprise.inject.Produces;
20+
import jakarta.inject.Inject;
21+
22+
@ApplicationScoped
23+
public class NormalSelfConsumingNormalProducer {
24+
@Inject
25+
@SelfConsumingNormal
26+
Violation violation;
27+
28+
@Produces
29+
@ApplicationScoped
30+
@SelfConsumingNormal
31+
public Violation produceViolation() {
32+
return new Violation(NormalSelfConsumingNormalProducer.class.getName());
33+
}
34+
35+
public void ping() {
36+
violation.ping();
37+
}
38+
}

0 commit comments

Comments
 (0)