Skip to content

Instantly share code, notes, and snippets.

@ddillinger
Created April 13, 2012 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ddillinger/2377388 to your computer and use it in GitHub Desktop.
Save ddillinger/2377388 to your computer and use it in GitHub Desktop.
snet vs public
public void useSnet(){
if(snet){
}
else{
snet = true;
if(storageURL != null){
storageURL = snetAddr + storageURL.substring(8);
}
}
}
public void usePublic(){
if(!snet){
}
else{
snet = false;
if(storageURL != null){
storageURL = "https://" + storageURL.substring(snetAddr.length());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment