Skip to content

Commit

Permalink
Changed version.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfacciorusso committed Aug 2, 2015
1 parent b1dcb1d commit 5ab164c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/main/java/com/alexfacciorusso/urc/Urc.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static Urc with(String baseUrl) {
*
* @see com.alexfacciorusso.urc.Urc.UrcGenerator
*/
private UrcGenerator fromEndpoint(String path) {
public UrcGenerator fromEndpoint(String path) {
return new UrcGenerator(path);
}

Expand Down Expand Up @@ -126,7 +126,7 @@ public UrcGenerator setQueryParametersEnabled(boolean enabled) {
*
* @return the final uri/url
*/
private String build() {
public String build() {
Matcher m = ABSTRACT_PATTERN.matcher(mEndpoint);
StringBuffer sb = new StringBuffer(mEndpoint.length());
while (m.find()) {
Expand Down

0 comments on commit 5ab164c

Please # to comment.