mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 05:07:31 +07:00
1. Block.getSpacing() contract is refined; 2. Java formatter tests don't strip line feeds and trailing spaces now; 3. Test data is corrected;
12 lines
208 B
Java
12 lines
208 B
Java
public class Test {
|
|
void anotherMethod(String s);
|
|
|
|
String field;
|
|
|
|
/**
|
|
* @param anObject
|
|
*/
|
|
void method(Test anObject, String field1) {
|
|
anObject.anotherMethod(field1);
|
|
}
|
|
} |