Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan-CS committed May 20, 2021
2 parents dba18ba + bb9ce73 commit 1857670
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 26 deletions.
1 change: 1 addition & 0 deletions Equations.iml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
Expand Down
2 changes: 1 addition & 1 deletion src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Manifest-Version: 1.0
Main-Class: main.io.github.ethankelly.Main
Main-Class: io.github.ethankelly.Main

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import main.io.github.ethankelly.symbols.Greek;
import main.io.github.ethankelly.symbols.Maths;
import io.github.ethankelly.symbols.Greek;
import io.github.ethankelly.symbols.Maths;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import java.text.MessageFormat;
import java.util.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import main.io.github.ethankelly.std.Set;
import main.io.github.ethankelly.std.Rand;
import main.io.github.ethankelly.std.MinPriorityQueue;
import io.github.ethankelly.std.MinPriorityQueue;
import io.github.ethankelly.std.Rand;
import io.github.ethankelly.std.Set;

import java.io.FileDescriptor;
import java.io.FileOutputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main.io.github.ethankelly;
package io.github.ethankelly;

import main.io.github.ethankelly.symbols.Maths;
import io.github.ethankelly.symbols.Maths;

import java.util.List;
import java.util.stream.IntStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;

import java.util.*;
import java.util.regex.Pattern;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;

import java.util.Comparator;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;

import java.io.FileNotFoundException;
import java.io.PrintWriter;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;

import java.util.Iterator;
import java.util.NoSuchElementException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;

/**
* The {@code StdRandom} class provides static methods for generating pseudo-random numbers from various discrete and
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.std;
package io.github.ethankelly.std;


import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.symbols;
package io.github.ethankelly.symbols;

@SuppressWarnings("unused")
public enum Greek {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main.io.github.ethankelly.symbols;
package io.github.ethankelly.symbols;

public enum Maths {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package test.io.github.ethankelly;
package io.github.ethankelly;

import main.io.github.ethankelly.Equations;
import org.junit.jupiter.api.Assertions;

class EquationsTest {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package test.io.github.ethankelly;
package io.github.ethankelly;

import main.io.github.ethankelly.Graph;
import main.io.github.ethankelly.GraphGenerator;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

Expand Down

0 comments on commit 1857670

Please sign in to comment.