summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-10-14 22:45:32 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-10-14 22:45:32 +0000
commit23719c8f1c99b0b6c8a1595ae0ac67b5a48bc985 (patch)
treecb9c9b5c0cdb04301298333c74c810db844d0c56 /sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
parent27ba71e2230fa7ef7605c52080e13a70041e09bf (diff)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825324 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java')
-rw-r--r--sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java b/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
index 6c3addf7b7..6cc5b49ee6 100644
--- a/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
+++ b/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
@@ -96,7 +96,7 @@ public class HelloworldServiceImpl implements HelloworldService {
private Long countInStore() {
Transaction tx = datastoreService.beginTransaction();
Entity entity = null;
- Key key = KeyFactory.createKey("HitCounter", "countter");
+ Key key = KeyFactory.createKey("HitCounter", "counter");
try {
entity = datastoreService.get(tx, key);
} catch (EntityNotFoundException e1) {