Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/org/ckan/Resource.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Resource{
private String cache_last_updated;
private String package_id;
private String webstore_last_updated;
private int size;
private long size;
private int position;
private String resource_type;
private String last_modified;
Expand Down Expand Up @@ -120,11 +120,11 @@ public String getWebstore_last_updated() {
return webstore_last_updated;
}

public void setSize(int size) {
public void setSize(long size) {
this.size = size;
}

public int getSize() {
public long getSize() {
return size;
}

Expand Down