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

Commit

Permalink
trim
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Nov 24, 2017
1 parent 3a8e909 commit 03c665d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/amihaiemil/charles/github/FromSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ public Post[] posts() {
new SmartNotifications(
new RtNotifications(
new Mention(),
"token " + this.githubTokens[i],
"token " + this.githubTokens[i].trim(),
"https://api.github.com/notifications"
)
),
this.githubTokens[i],
this.postEndpoints[i]
this.githubTokens[i].trim(),
this.postEndpoints[i].trim()
);
}
return posts;
Expand Down

0 comments on commit 03c665d

Please # to comment.