Skip to content

Commit

Permalink
cleanup and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
felixlp938 committed May 10, 2024
1 parent 17e5b54 commit 4e95667
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/java/de/felixletsplays/CredentialManager/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class App {
public static boolean run = true;

/**
*
* Instance of commands
*/
public static Commands cmd = new Commands();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
package de.felixletsplays.CredentialManager.Connection;

import de.felixletsplays.CredentialManager.App;
import java.io.BufferedReader;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.util.Scanner;

/**
* Class to create a connection object
Expand All @@ -25,6 +18,11 @@ public class Connection {

private String args;

/**
* Create a connection
*
* @param builder {@link ConnectionBuilder}
*/
public Connection(ConnectionBuilder builder) {
this.ID = builder.getID();
this.remotehost = builder.getRemotehost();
Expand Down

0 comments on commit 4e95667

Please sign in to comment.