Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed System.out.println calls from socialauth-android lib #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ private void connectProvider(final Context ctx, final Provider provider) {

String temp = provider.toString() + "attribute";
for (String attr : tokenMap.keySet()) {
System.out.println("Attr " + attr);
// System.out.println("Attr " + attr);

if (attr.startsWith(temp)) {
int startLocation = attr.indexOf(temp) + temp.length() + 1;
Expand All @@ -705,9 +705,9 @@ private void connectProvider(final Context ctx, final Provider provider) {

}

for (Map.Entry entry : attrMap.entrySet()) {
System.out.println(entry.getKey() + ", " + entry.getValue());
}
// for (Map.Entry entry : attrMap.entrySet()) {
// System.out.println(entry.getKey() + ", " + entry.getValue());
// }

// create new AccessGrant Object
final AccessGrant accessGrant = new AccessGrant(key, secret);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,9 +492,9 @@ private void writeToken(AuthProvider auth) {
edit.putString(mProviderName.toString() + " providerid", providerid);

if (attributes != null) {
for (Map.Entry entry : attributes.entrySet()) {
System.out.println(entry.getKey() + ", " + entry.getValue());
}
// for (Map.Entry entry : attributes.entrySet()) {
// System.out.println(entry.getKey() + ", " + entry.getValue());
// }

for (String s : attributes.keySet()) {
edit.putString(mProviderName.toString() + "attribute " + s, String.valueOf(attributes.get(s)));
Expand Down