1 package org.apache.derby.shared.common.sanity; 2 3 /* 4 ** 5 * This class is intended for the use of the SanityManager in conjunction 6 * with making a build either Sane or Insane. An insane build is one which 7 * has the two booleans expressed here as "false"; a sane build should be 8 * have the booleans expressed as "true". 9 * 10 * @see com.ihost.cs.iapi.services.sanity.SanityManager 11 ** 12 */ 13 14 public class SanityState 15 { 16 public static final boolean ASSERT=false ; 17 public static final boolean DEBUG=false ; 18 } 19