Skip to content

Commit

Permalink
Merge pull request #30 from egovernments/PFM-4509-master-main
Browse files Browse the repository at this point in the history
PFM-4509
  • Loading branch information
gargrahuldev authored Sep 7, 2023
2 parents 4118139 + 71d4ac9 commit 8639929
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public String getShortnerURL(String actualURL) {
else return removeProtocolFromURL(res);
}
public String removeProtocolFromURL(String url){
return url.replaceAll("/^https?:\\/\\//", "")
return url.replaceAll("/^https?:\\/\\//", "");
}
public String getBusinessService(TransactionRequest transactionRequest){
StringBuilder uri = new StringBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private CharSequence getShortenedUrl(String url) {
return removeProtocolFromURL(res);
}
public String removeProtocolFromURL(String url){
return url.replaceAll("/^https?:\\/\\//", "")
return url.replaceAll("/^https?:\\/\\//", "");
}
public EventRequest sendGenerateDemandNotification(RequestInfo requestInfo, String tenantId) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public String getShortnerURL(String actualURL) {
return removeProtocolFromURL(response.toString());
}
public String removeProtocolFromURL(String url){
return url.replaceAll("/^https?:\\/\\//", "")
return url.replaceAll("/^https?:\\/\\//", "");
}

public HashMap<String, String> getLocalizationMessage(RequestInfo requestInfo, String code,String tenantId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private CharSequence getShortenedUrl(String url) {
return removeProtocolFromURL(res);
}
public String removeProtocolFromURL(String url){
return url.replaceAll("/^https?:\\/\\//", "")
return url.replaceAll("/^https?:\\/\\//", "");
}
public String formatPendingCollectionMessage(RequestInfo requestInfo, String tenantId, String message, Map<String, Object> additionalDetailsMap) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public String getShortnerURL(String actualURL) {
return removeProtocolFromURL(response.toString());
}
public String removeProtocolFromURL(String url){
return url.replaceAll("/^https?:\\/\\//", "")
return url.replaceAll("/^https?:\\/\\//", "");
}

public boolean isModifyConnectionRequest(WaterConnectionRequest waterConnectionRequest) {
Expand Down

0 comments on commit 8639929

Please sign in to comment.