Skip to content

Commit

Permalink
make it static
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenBloodDev committed Oct 13, 2023
1 parent d52e04e commit 82180e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/pl/nightdev701/OpenAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ public static BaseKey getValueKey(UUID value) {
/**
* manipulate System.out
*/
public OpenPrintStream getPrintStream() throws FileNotFoundException {
public static OpenPrintStream getPrintStream() throws FileNotFoundException {
return new OpenPrintStream();
}

/**
* manipulate System.out
* @param logger
*/
public OpenPrintStream getPrintStream(AbstractLogger logger) throws FileNotFoundException {
public static OpenPrintStream getPrintStream(AbstractLogger logger) throws FileNotFoundException {
return new OpenPrintStream(logger);
}

Expand Down

0 comments on commit 82180e5

Please sign in to comment.