/* * [Stats.java] * * Summary: Dummy class for HitStats Weight CumStats group for daily hit stats and weight stats. * * Copyright: (c) 1995-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.5 2006-03-05 */ package com.mindprod.stats; import static java.lang.System.*; /** * Dummy class for HitStats Weight CumStats group for daily hit stats and weight stats. * * @author Roedy Green, Canadian Mind Products * @version 1.5 2006-03-05 * @since 1995 */ public final class Stats { private static final int FIRST_COPYRIGHT_YEAR = 1995; /** * undisplayed copyright notice */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 1995-2017 Roedy Green, Canadian Mind Products, http://mindprod.com"; @SuppressWarnings( { "UnusedDeclaration" } ) private static final String RELEASE_DATE = "2006-03-06"; /** * embedded version string. */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String VERSION_STRING = "1.5"; /** * TEST harness * * @param args not used */ public static void main( String[] args ) { out.println( "dummy stats.exe. Use stats.btm" ); } }