summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Mantek <fmantek@google.com>2009-09-22 15:44:41 +0200
committerFrank Mantek <fmantek@google.com>2009-09-22 15:44:41 +0200
commit435a35c009070054256eabedb4493b8bc634ebf3 (patch)
tree683492f43ab1544278ef573569cead1fcbab483e
parentf4006da9609d62247355e35319977c874f8d2279 (diff)
downloadgdata-435a35c009070054256eabedb4493b8bc634ebf3.tar.gz
small fix to the Entry class
-rw-r--r--src/com/google/wireless/gdata2/data/Entry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/google/wireless/gdata2/data/Entry.java b/src/com/google/wireless/gdata2/data/Entry.java
index a1a73a4..f0ac78a 100644
--- a/src/com/google/wireless/gdata2/data/Entry.java
+++ b/src/com/google/wireless/gdata2/data/Entry.java
@@ -132,7 +132,7 @@ public class Entry {
* @param type the contentType to set
*/
public void setContentType(String type) {
- this.contentType = content;
+ this.contentType = type;
}
/**