Skip to content

Commit

Permalink
Updated the hack according to the way of diffusion
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanthBezawada committed Sep 30, 2015
1 parent b2515ca commit b8e18bc
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,15 @@ private void startButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-F
// end input validations

statusLabel.setText("Started executing TieDIE");

logicThread = new TieDieLogicThread(currentnetwork, currentnetworkview, upComboSelected, downComboSelected, kernelRbutton.isSelected());
boolean isKernel = kernelRbutton.isSelected();
logicThread = new TieDieLogicThread(currentnetwork, currentnetworkview, upComboSelected, downComboSelected, isKernel);
logicThread.start();
try {
Thread.sleep(2500);
if(isKernel){
Thread.sleep(2500);
}else{
Thread.sleep(3000);
}
} catch (InterruptedException ex) {
Logger.getLogger(TieDieGUI.class.getName()).log(Level.SEVERE, null, ex);
}
Expand Down

0 comments on commit b8e18bc

Please sign in to comment.