Whitespace polishing: leading spaces->tabs; updated eclipse configuration to default to leading tabs for all bundles

This commit is contained in:
Chris Beams
2008-12-18 14:50:25 +00:00
parent 0f521c3bfb
commit 579280d7bf
87 changed files with 4294 additions and 654 deletions

View File

@@ -1206,7 +1206,7 @@ public class BridgeMethodResolverTests {
//-------------------
@SuppressWarnings("serial")
private static class ParameterType implements Serializable {
private static class ParameterType implements Serializable {
}

View File

@@ -42,7 +42,7 @@ public class ComparatorTests {
@SuppressWarnings("unchecked")
@Test
public void testComparableComparatorIllegalArgs() {
public void testComparableComparatorIllegalArgs() {
Comparator c = new ComparableComparator();
Object o1 = new Object();
Object o2 = new Object();
@@ -70,7 +70,7 @@ public class ComparatorTests {
@SuppressWarnings("unchecked")
@Test
public void testNullSafeComparatorNullsLow() {
public void testNullSafeComparatorNullsLow() {
Comparator<String> c = NullSafeComparator.NULLS_LOW;
assertTrue(c.compare(null, "boo") < 0);
}