Remove old biomodels library

This commit is contained in:
Chris Myers 2021-01-13 16:09:53 -07:00
parent e9fa5e478c
commit 8b24d5dd7c
2 changed files with 0 additions and 21 deletions

View file

@ -107,12 +107,6 @@
<version>1.0.14</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.biomodels</groupId>
<artifactId>biomodels-wslib</artifactId>
<version>1.21</version>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>

View file

@ -29,7 +29,6 @@ import java.io.StringWriter;
import java.util.ArrayList;
import java.util.prefs.Preferences;
import javax.mail.PasswordAuthentication;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
@ -140,20 +139,6 @@ public class Utility {
exp.setVisible(true);
}
}
public static class MyAuthenticator extends javax.mail.Authenticator {
String User;
String Password;
public MyAuthenticator (String user, String password) {
User = user;
Password = password;
}
@Override
public PasswordAuthentication getPasswordAuthentication() {
return new javax.mail.PasswordAuthentication(User, Password);
}
}
/**
* Returns the pathname of the selected file in the file chooser.