Commit 74b61bb2 by sikang

remove http 2 https

parent b8b28a96
......@@ -10,7 +10,7 @@ public class ActivityInfoBean implements Serializable{
private String detailUrl;
public String getUrl() {
return url == null ? "" : url.replace("http://", "https://");
return url;
}
public void setUrl(String url) {
......
......@@ -109,7 +109,7 @@ public class EmploymentServerBean implements Serializable {
}
public String getWorkCardUrl() {
return workCardUrl == null ? "" : url.replace("http://", "https://");
return workCardUrl;
}
public void setWorkCardUrl(String workCardUrl) {
......
......@@ -31,7 +31,7 @@ public class PhotoListBean implements Serializable {
}
public String getUrl() {
return url == null ? "" : url.replace("http://", "https://");
return url;
}
public void setUrl(String url) {
......
......@@ -36,7 +36,7 @@ public class RecordFilesResponse implements Serializable {
}
public String getUrl() {
return url == null ? "" : url.replace("http://", "https://");
return url;
}
public void setUrl(String url) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment