I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 5913d9ee authored by sponge's avatar sponge
Browse files

ADDED SimpleStore, cuz I forgot to add it

parent 61749aaa
No related branches found
No related tags found
No related merge requests found
/*
* This is free software, do as you please.
*/
package net.i2p.util;
/**
*
* @author sponge
*/
public class SimpleStore {
private boolean answer;
SimpleStore(boolean x) {
answer=x;
}
/**
* set the answer
*
* @param x
*/
public void setAnswer(boolean x) {
answer = x;
}
/**
*
* @return boolean
*/
public boolean getAnswer() {
return answer;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment