You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2013/11/08 19:31:06 UTC

git commit: removed incorrect comments:

Updated Branches:
  refs/heads/master 16b9438fe -> 987430a5b


removed incorrect comments:


Project: http://git-wip-us.apache.org/repos/asf/curator/repo
Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/987430a5
Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/987430a5
Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/987430a5

Branch: refs/heads/master
Commit: 987430a5bac164268368a293a3f2ae5328b8d581
Parents: 16b9438
Author: randgalt <ra...@apache.org>
Authored: Fri Nov 8 10:31:02 2013 -0800
Committer: randgalt <ra...@apache.org>
Committed: Fri Nov 8 10:31:02 2013 -0800

----------------------------------------------------------------------
 .../org/apache/curator/framework/recipes/locks/TestLockACLs.java   | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/curator/blob/987430a5/curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestLockACLs.java
----------------------------------------------------------------------
diff --git a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestLockACLs.java b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestLockACLs.java
index 008b399..cc933d8 100644
--- a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestLockACLs.java
+++ b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/locks/TestLockACLs.java
@@ -58,14 +58,12 @@ public class TestLockACLs extends BaseClassForTests
         CuratorFramework client = createClient();
         try
         {
-            // Create a path directly and verify that MyACLProvider is being used
             client.create().forPath("/foo");
             Assert.assertNotNull(client.checkExists().forPath("/foo"));
             Assert.assertEquals(ZooDefs.Perms.ALL, client.getACL().forPath("/foo").get(0).getPerms());
             Assert.assertEquals("ip", client.getACL().forPath("/foo").get(0).getId().getScheme());
             Assert.assertEquals("127.0.0.1", client.getACL().forPath("/foo").get(0).getId().getId());
 
-            // Now try creating a lock and we'll see that it incorrectly has the default world ACLs
             InterProcessReadWriteLock lock = new InterProcessReadWriteLock(client, "/bar");
             InterProcessMutex writeLock = lock.writeLock();
             writeLock.acquire();