Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lou wolford committed Dec 18, 2014
1 parent 8062fd7 commit e80bc12
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,6 @@
</properties>

<dependencies>
<!--<dependency>-->
<!--<groupId>com.google.android</groupId>-->
<!--<artifactId>android</artifactId>-->
<!--<version>4.1.1.4</version>-->
<!--<scope>provided</scope>-->
<!--</dependency>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/gov/adlnet/xapi/client/BaseClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import java.net.MalformedURLException;
import java.net.URL;

//import android.util.Base64;
import javax.xml.bind.DatatypeConverter;

import com.google.gson.Gson;
Expand Down Expand Up @@ -51,7 +50,6 @@ protected void init(URL uri, String user, String password) {
this._host = uri;
this.username = user;
this.password = password;
// this.authString = "Basic " + Base64.encodeToString((this.username + ":" + this.password).getBytes(), Base64.DEFAULT);
this.authString = "Basic " + DatatypeConverter.printBase64Binary((this.username + ":" + this.password).getBytes());
}

Expand Down

0 comments on commit e80bc12

Please sign in to comment.