Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jun 17, 2010
1 parent bef40e4 commit a8fd29a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/org/jgroups/protocols/FILE_PING.java
Expand Up @@ -19,7 +19,7 @@
* added to our transport's UUID-PhysicalAddress cache.<p/>
* The design is at doc/design/FILE_PING.txt
* @author Bela Ban
* @version $Id: FILE_PING.java,v 1.18 2010/06/17 14:53:09 belaban Exp $
* @version $Id: FILE_PING.java,v 1.19 2010/06/17 14:57:15 belaban Exp $
*/
@Experimental
public class FILE_PING extends Discovery {
Expand All @@ -43,7 +43,7 @@ public class FILE_PING extends Discovery {

public void init() throws Exception {
super.init();
createRootFilesystem();
createRootDir();
}

public void start() throws Exception {
Expand Down Expand Up @@ -117,7 +117,7 @@ public Object down(Event evt) {
return retval;
}

protected void createRootFilesystem() {
protected void createRootDir() {
root_dir=new File(location);
if(root_dir.exists()) {
if(!root_dir.isDirectory())
Expand Down
4 changes: 2 additions & 2 deletions src/org/jgroups/protocols/S3_PING.java
Expand Up @@ -35,7 +35,7 @@
* Discovery protocol using Amazon's S3 storage. The S3 access code reuses the example shipped by Amazon.
* This protocol is unsupported and experimental !
* @author Bela Ban
* @version $Id: S3_PING.java,v 1.9 2010/06/17 14:53:09 belaban Exp $
* @version $Id: S3_PING.java,v 1.10 2010/06/17 14:57:15 belaban Exp $
*/
@Experimental @Unsupported
public class S3_PING extends FILE_PING {
Expand Down Expand Up @@ -92,7 +92,7 @@ public void run() {
});
}

protected void createRootFilesystem() {
protected void createRootDir() {
; // do *not* create root file system (don't remove !)
}

Expand Down

0 comments on commit a8fd29a

Please sign in to comment.