Apply editorconfig auto formatting

This commit is contained in:
James Seibel
2023-08-14 21:16:08 -05:00
parent 56959094ae
commit 8489003e0c
340 changed files with 11116 additions and 9669 deletions
@@ -25,7 +25,7 @@ public abstract class AbstractDhApiCancelableOneTimeTestEvent implements IDhApiC
//=========================//
@Override
public final void fireEvent(DhApiCancelableEventParam<Boolean> input)
public final void fireEvent(DhApiCancelableEventParam<Boolean> input)
{
this.onTestEvent(input);
if (input.value)
@@ -133,7 +133,7 @@ public class EventInjectorTest
oneTimeEventList = TEST_EVENT_HANDLER.getAll(AbstractDhApiCancelableOneTimeTestEvent.class);
for (int i = 0; i < oneTimeEventList.size(); i++)
{
Assert.assertEquals("Event not fired for object ["+i+"].", true, oneTimeEventList.get(i).getTestValue());
Assert.assertEquals("Event not fired for object [" + i + "].", true, oneTimeEventList.get(i).getTestValue());
}
+1 -1
View File
@@ -24,7 +24,7 @@ import org.junit.Test;
/**
* This is just a quick demo to confirm the testing system is set up correctly.
*
*
* @author James Seibel
* @version 2022-9-5
*/