File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed
gcloud-java-core/src/main/java/com/google/gcloud
gcloud-java-datastore/src
main/java/com/google/gcloud/datastore
test/java/com/google/gcloud/datastore Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -411,8 +411,6 @@ private static boolean isWindows() {
411411 }
412412
413413 protected static String getAppEngineProjectId () {
414- // TODO(ozarov): An alternative to reflection would be to depend on AE api jar:
415- // http://mvnrepository.com/artifact/com.google.appengine/appengine-api-1.0-sdk/1.2.0
416414 try {
417415 Class <?> factoryClass =
418416 Class .forName ("com.google.appengine.api.appidentity.AppIdentityServiceFactory" );
Original file line number Diff line number Diff line change @@ -172,8 +172,6 @@ public String namespace() {
172172 }
173173
174174 private static String defaultNamespace () {
175- // TODO(ozarov): An alternative to reflection would be to depend on AE api jar:
176- // http://mvnrepository.com/artifact/com.google.appengine/appengine-api-1.0-sdk/1.2.0
177175 try {
178176 Class <?> clazz = Class .forName ("com.google.appengine.api.NamespaceManager" );
179177 Method method = clazz .getMethod ("get" );
Original file line number Diff line number Diff line change @@ -459,7 +459,6 @@ public void testRunStructuredQuery() {
459459 assertEquals ("Dan" , entity .getString ("name" ));
460460 assertEquals (2 , entity .properties ().size ());
461461 assertFalse (results4 .hasNext ());
462- // TODO(ozarov): construct a test to verify nextQuery/pagination
463462 }
464463
465464 @ Test
You can’t perform that action at this time.
0 commit comments