01: package org.apache.derby.shared.common.sanity;
02:
03: /*
04: **
05: * This class is intended for the use of the SanityManager in conjunction
06: * with making a build either Sane or Insane. An insane build is one which
07: * has the two booleans expressed here as "false"; a sane build should be
08: * have the booleans expressed as "true".
09: *
10: * @see com.ihost.cs.iapi.services.sanity.SanityManager
11: **
12: */
13:
14: public class SanityState {
15: public static final boolean ASSERT = false;
16: public static final boolean DEBUG = false;
17: }
|