Skip to content

Commit

Permalink
replace CR by LF in 3 files that used CR as line ending
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Jan 17, 2024
1 parent 7df1bd4 commit 046e78e
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 3 deletions.
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 {

}
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();
}
}
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();
}
}

0 comments on commit 046e78e

Please sign in to comment.