Skip to content

Commit

Permalink
[eol] Fix end of file markers
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed May 14, 2024
1 parent ec03b22 commit 6177af8
Show file tree
Hide file tree
Showing 67 changed files with 67 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ public interface AssertionInfo {
Description description();

Representation representation();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ public static InFilter in(Object... values) {
public <E> Filters<E> applyOn(Filters<E> filters) {
return filters.in(filterParameter);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public boolean filter(@SuppressWarnings("unused") Object propertyValueOfCurrentE
public <E> Filters<E> applyOn(Filters<E> filters) {
return filters.notIn(filterParameter);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ public static String mostRelevantDescription(Description existingDescription, St
return isDescriptionSet ? existingDescription.value() : newDescription;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ protected static String diffsAsString(List<Delta<String>> diffsList) {
return diffsList.stream().map(Delta::toString).collect(joining(System.lineSeparator()));
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ public interface ErrorMessageFactory {
* @return the created error message.
*/
String create();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ public String describe(int index, AssertionInfo info) {
"- error: %s",
info.representation().toStringOf(elementNotSatisfyingRequirements), index, errorMessage);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ public InputStreamsException(String message) {
public InputStreamsException(String message, Throwable cause) {
super(message, cause);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ public void describeTo(Description description) {
description.appendText(Throwables.getStackTrace(firstError));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
})
@Retention(RetentionPolicy.CLASS)
public @interface CheckReturnValue {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ public int compare(final Delta<?> a, final Delta<?> b) {
}
return 0;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public boolean isSnake() {
return false;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ public boolean isSnake() {
return true;
}

}
}
2 changes: 1 addition & 1 deletion assertj-core/src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
<body>
<menu ref="reports" />
</body>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ protected static Iterable<TolkienCharacter> hobbits() {
return asList(frodo, sam);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ public IntegerAssert expectThat(int value) {
public <T> ListAssert<T> expectThat(List<? extends T> actual) {
return proxy(ListAssert.class, List.class, actual);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public Object resolveParameter(ParameterContext parameterContext,
return extensionContext;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ void concurrent_tests_with_explicit_per_class_annotation_do_not_interfere() {
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ public class LocalTimeAssertBaseTest {
public static final LocalTime REFERENCE = LocalTime.of(0, 0, 0, 1);
public static final LocalTime BEFORE = LocalTime.of(0, 0, 0, 0);
public static final LocalTime AFTER = LocalTime.of(0, 0, 0, 2);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ public class OffsetTimeAssertBaseTest {
public static final OffsetTime BEFORE = OffsetTime.of(0, 0, 0, 0, ZoneOffset.UTC);
public static final OffsetTime AFTER = OffsetTime.of(0, 0, 0, 2, ZoneOffset.UTC);

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ public String toString() {
return String.format("Author [name=%s]", name);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

enum ColorDto {
RED, GREEN, BLUE, UNKNOWN
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public Light(Color value) {
this.color = value;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public LightDto(ColorDto color) {
this.color = color;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public String toString() {
return format("ComparableExample [id=%s]", id);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ public TolkienCharacterAssert hasAge(int age) {
// return the current assertion for method chaining
return this;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ public String getAbsolutePath() {
public String getParent() {
return noParent ? null : super.getParent();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ public Person(String firstName, String lastName) {
this.lastName = lastName;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ public PersonDAO(String firstname, String lastname, Long id, Integer age) {
this.id = id;
this.age = age;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ public class AbstractTest_StandardComparisonStrategy {

protected static StandardComparisonStrategy standardComparisonStrategy = StandardComparisonStrategy.instance();

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ protected Comparator<?> comparatorForCustomComparisonStrategy() {
return new AbsValueComparator<Integer>();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public void setUp() {
conditions.failures = failures;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ protected Float NaN() {
protected Float absDiff(Float actual, Float other) {
return Floats.instance().absDiff(actual, other);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public void setUp() {
integersWithAbsValueComparisonStrategy.failures = failures;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ public void setUp() {
iterables.conditions = conditions;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ public void setUp() {
longsWithAbsValueComparisonStrategy.failures = failures;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ public void setUp() {
testCondition = new TestCondition<>();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public void setUp() {
shortsWithAbsValueComparisonStrategy.failures = failures;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ public class SymmetricDateComparator implements Comparator<Date> {
public int compare(Date date1, Date date2) {
return date1.equals(date2) || date2.equals(date1) ? 0 : date1.compareTo(date2);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public class AlwaysDifferentAddress extends Address {
public boolean equals(Object o) {
return false;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public class AlwaysDifferentPerson extends Person {
public boolean equals(Object o) {
return false;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public class AlwaysEqualAddress extends Address {
public boolean equals(Object o) {
return true;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public FriendlyPerson(String name) {
public static FriendlyPerson friend(String name) {
return new FriendlyPerson(name);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public class Giant extends Person {
public String toString() {
return "Giant [name=" + name + ", home=" + home + ", " + "height " + height + "]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public class Home {
public String toString() {
return "Home [address=" + address + "]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public class HomeDto {
public String toString() {
return "HomeDto [address=" + address + "]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
package org.assertj.core.internal.objects.data;

public class Human extends Person {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public String toString() {
return String.format("Person [dateOfBirth=%s, name=%s, phone=%s, home=%s]", dateOfBirth, name, phone, home);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ public PersonDto(String name) {
public String toString() {
return "PersonDto [name=" + name + ", home=" + home + "]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public PersonDtoWithPersonNeighbour(String name) {
public String toString() {
return "PersonDto [name=" + name + ", home=" + home + "]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
public abstract class BaseNavigableIterableAssert_Test
extends GenericNavigableAssert_Test<Iterable<Vehicle>, AbstractIterableAssert<?, Iterable<Vehicle>, Vehicle, VehicleAssert>> {

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,4 @@ public Optional<String> findFirst() {
public Optional<String> findAny() {
return null;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ public class MyProjectAssertions {
public static MyProjectClassAssert assertThat(MyProjectClass actual) {
return new MyProjectClassAssert(actual);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ public MyProjectClass(Object value) {
public Object getValue() {
return value;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public MyProjectClassAssert hasValue(Object value) throws Exception {
return this;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ public class MyProjectSoftAssertions extends SoftAssertions {
public MyProjectClassAssert assertThat(MyProjectClass actual) {
return proxy(MyProjectClassAssert.class, MyProjectClass.class, actual);
}
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
org.assertj.core.test.ConfigurationForTests
org.assertj.core.test.ConfigurationForTests
2 changes: 1 addition & 1 deletion assertj-core/src/test/resources/ascii.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
abc
abc

0 comments on commit 6177af8

Please sign in to comment.