summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java
diff options
context:
space:
mode:
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) {