Skip to content

Commit

Permalink
yegor256#11: indentation updated
Browse files Browse the repository at this point in the history
  • Loading branch information
popprem committed Apr 21, 2015
1 parent 89d9bc8 commit eb2c44e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/org/takes/facets/auth/social/PsTwitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@ private String token()
return new JdkRequest(uri)
.method("POST")
.header(
"Content-Type",
"application/x-www-form-urlencoded;charset=UTF-8"
"Content-Type",
"application/x-www-form-urlencoded;charset=UTF-8"
)
.header(
"Authorization",
String.format(
"Basic %s", DatatypeConverter.printBase64Binary(
String.format("%s:%s", this.app, this.key).getBytes()
"Authorization",
String.format(
"Basic %s", DatatypeConverter.printBase64Binary(
String.format("%s:%s", this.app, this.key).getBytes()
)
)
)
Expand Down

0 comments on commit eb2c44e

Please sign in to comment.