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

Skip to content
Snippets Groups Projects
Commit 7461d8c1 authored by str4d's avatar str4d
Browse files

Added "@since 0.8.13" tags to the only two methods in WizardBean

parent 8cbf94f9
No related branches found
No related tags found
No related merge requests found
...@@ -13,11 +13,12 @@ public class WizardBean extends EditBean { ...@@ -13,11 +13,12 @@ public class WizardBean extends EditBean {
/** /**
* Whether the tunnel being set up is a client tunnel or not. * Whether the tunnel being set up is a client tunnel or not.
* * @since 0.8.13
*/ */
public void setIsClient(String isClient) { public void setIsClient(String isClient) {
_isClient = Boolean.valueOf(isClient); _isClient = Boolean.valueOf(isClient);
} }
/** @since 0.8.13 */
public boolean getIsClient() { public boolean getIsClient() {
return _isClient; return _isClient;
} }
......
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