Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
adds default values in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-moser committed Sep 23, 2019
1 parent 3c08ab7 commit 75aca24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/iota/iri/conf/SolidificationConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ public interface SolidificationConfig extends Config {
boolean isTipSolidifierEnabled();

/**
* The depth the solidifier will use.
* The depth the solidifier will use. {@value BaseIotaConfig.Defaults#SOLIDIFIER_DEPTH}
*
* @return the depth the solidifier will use.
* @return {@value BaseIotaConfig.Defaults#SOLIDIFIER_DEPTH}
*/
int getSolidifierDepth();

/**
* Returns the interval at which the solidifer will run.
* Returns the interval at which the solidifer will run. {@value BaseIotaConfig.Defaults#SOLIDIFIER_INTERVAL_MILLISEC}
*
* @return the interval at which the solidifer will run
* @return {@value BaseIotaConfig.Defaults#SOLIDIFIER_INTERVAL_MILLISEC}
*/
int getSolidifierIntervalMillisec();

Expand Down

0 comments on commit 75aca24

Please sign in to comment.