mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
Force LF for basically everything.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
// bean class
|
||||
public class ContentService {
|
||||
private TransactionHelper helper;
|
||||
|
||||
// This method does not match the property in the bean file.
|
||||
public void setHelper(TransactionHelper helper) {
|
||||
this.helper = helper;
|
||||
}
|
||||
}
|
||||
// bean class
|
||||
public class ContentService {
|
||||
private TransactionHelper helper;
|
||||
|
||||
// This method does not match the property in the bean file.
|
||||
public void setHelper(TransactionHelper helper) {
|
||||
this.helper = helper;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<bean id="contentService" class="documentation.examples.spring.ContentService">
|
||||
<!--BAD: The setter method in the class is 'setHelper', so this property
|
||||
does not match the setter method.-->
|
||||
<property name="transactionHelper">
|
||||
<ref bean="transactionHelper"/>
|
||||
</property>
|
||||
</bean>
|
||||
<bean id="contentService" class="documentation.examples.spring.ContentService">
|
||||
<!--BAD: The setter method in the class is 'setHelper', so this property
|
||||
does not match the setter method.-->
|
||||
<property name="transactionHelper">
|
||||
<ref bean="transactionHelper"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
Reference in New Issue
Block a user