Skip to content

Commit

Permalink
fix code formatting and optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
angelo-streetcontxt committed Jun 2, 2016
1 parent 3d9013d commit 122341b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 10 deletions.
3 changes: 1 addition & 2 deletions addServer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import sys
import os
import os.path
import sys
import xml.dom.minidom

if os.environ["TRAVIS_SECURE_ENV_VARS"] == "false":
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/ca/genovese/coffeecats/std/ListInstance.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import ca.genovese.coffeecats.data.List;
import ca.genovese.coffeecats.kind.Kind;
import ca.genovese.coffeecats.structures.CovariantFunctor;
import ca.genovese.coffeecats.structures.InvariantFunctor;

import java.util.function.Function;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import ca.genovese.coffeecats.data.Option;
import ca.genovese.coffeecats.kind.Kind;
import ca.genovese.coffeecats.structures.CovariantFunctor;
import ca.genovese.coffeecats.structures.InvariantFunctor;

import java.util.function.Function;

Expand Down
5 changes: 3 additions & 2 deletions src/test/java/ca/genovese/coffeecats/data/EvalTest.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package ca.genovese.coffeecats.data;

import static org.junit.gen5.api.Assertions.*;

import org.junit.gen5.api.BeforeEach;
import org.junit.gen5.api.DisplayName;
import org.junit.gen5.api.Test;

import static org.junit.gen5.api.Assertions.assertEquals;
import static org.junit.gen5.api.Assertions.assertSame;

public class EvalTest {
private int execCount;

Expand Down
4 changes: 2 additions & 2 deletions src/test/java/ca/genovese/coffeecats/data/OptionTest.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package ca.genovese.coffeecats.data;

import static org.junit.gen5.api.Assertions.*;

import org.junit.gen5.api.DisplayName;
import org.junit.gen5.api.Test;

import java.util.NoSuchElementException;

import static org.junit.gen5.api.Assertions.*;

public class OptionTest {
@Test
@DisplayName("Creating a None")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import ca.genovese.coffeecats.data.Option;
import ca.genovese.coffeecats.laws.CovariantFunctorLaws;
import ca.genovese.coffeecats.laws.InvariantFunctorLaws;
import org.junit.gen5.api.extension.ExtendWith;

@ExtendWith(OptionInstanceProvider.class)
Expand Down

0 comments on commit 122341b

Please sign in to comment.