This commit is contained in:
Erik C. Thauvin 2019-04-14 19:05:02 -07:00
parent 316061e69b
commit 7c724db67e
3 changed files with 6 additions and 5 deletions

View file

@ -46,9 +46,7 @@ import java.text.DecimalFormat;
* @since 1.0 * @since 1.0
*/ */
public class Calc extends AbstractModule { public class Calc extends AbstractModule {
/** // The Calc command.
* The Calc command.
*/
private static final String CALC_CMD = "calc"; private static final String CALC_CMD = "calc";
/** /**

View file

@ -60,8 +60,11 @@ import java.util.TreeMap;
* @since 1.0 * @since 1.0
*/ */
public final class CurrencyConverter extends ThreadedModule { public final class CurrencyConverter extends ThreadedModule {
// The rates keyword. /**
* The rates keyword.
*/
static final String CURRENCY_RATES_KEYWORD = "rates"; static final String CURRENCY_RATES_KEYWORD = "rates";
// The currency command. // The currency command.
private static final String CURRENCY_CMD = "currency"; private static final String CURRENCY_CMD = "currency";
// The exchange rates. // The exchange rates.

View file

@ -59,7 +59,7 @@ public class Weather2 extends ThreadedModule {
/** /**
* The OpenWeatherMap API Key property. * The OpenWeatherMap API Key property.
*/ */
public static final String OWM_API_KEY_PROP = "owm-api-key"; static final String OWM_API_KEY_PROP = "owm-api-key";
// The weather command. // The weather command.
private static final String WEATHER_CMD = "weather"; private static final String WEATHER_CMD = "weather";