Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
TntTastisch committed Jan 11, 2025
1 parent a34c031 commit 088b568
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
package eu.smoothcloud.node;

import eu.smoothcloud.api.INode;
import eu.smoothcloud.node.configuration.*;
import eu.smoothcloud.node.configuration.LaunchConfiguration;
import eu.smoothcloud.node.configuration.MessageConfiguration;
import eu.smoothcloud.node.configuration.TemplatesConfiguration;
import eu.smoothcloud.node.configuration.TomlSerializable;
import eu.smoothcloud.node.console.JLineConsole;
import eu.smoothcloud.node.template.TemplateManager;
import eu.smoothcloud.util.converter.CloudList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
package eu.smoothcloud.node.configuration;

import org.tomlj.Toml;
import org.tomlj.TomlTable;
import org.tomlj.TomlArray;
import org.tomlj.TomlTable;

import java.io.File;
import java.io.FileWriter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@

import java.io.File;
import java.io.IOException;
import java.nio.file.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.HashMap;
import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
package eu.smoothcloud.util.converter;

import java.lang.reflect.Array;
import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;

public class CloudList<T> {
Expand Down

0 comments on commit 088b568

Please sign in to comment.