Skip to content

Commit

Permalink
removed Debug Statements
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1076 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Nov 14, 2005
1 parent bbb936b commit 5918d39
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions source/de/anomic/data/userDB.java
Expand Up @@ -201,7 +201,6 @@ public Entry proxyAuth(String auth, String ip){
* @param ip the IP of the User
*/
public Entry ipAuth(String ip) {
System.out.println("ipAuth: "+ip);
if(this.ipUsers.containsKey(ip)){
String user=(String)this.ipUsers.get(ip);
Entry entry=this.getEntry(user);
Expand Down Expand Up @@ -409,7 +408,6 @@ public boolean hasAdminRight() {
return (this.mem.containsKey(ADMIN_RIGHT)?((String)this.mem.get(ADMIN_RIGHT)).equals("true"):false);
}
public boolean isLoggedOut(){
System.out.println("isLoggedOut:"+this.mem.get(LOGGED_OUT));
return (this.mem.containsKey(LOGGED_OUT)?((String)this.mem.get(LOGGED_OUT)).equals("true"):false);
}
public void logout(String ip){
Expand All @@ -419,7 +417,6 @@ public void logout(String ip){
ipUsers.remove(ip);
}
}catch(IOException e){}
System.out.println("Logout: "+ip);
}
public void logout(){
logout("xxxxxx");
Expand Down

0 comments on commit 5918d39

Please sign in to comment.