/* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2()
        {
            string data = null;

            /* POTENTIAL FLAW: data is null */
            data = null;
            goodB2G2PublicStatic = true;
            CWE476_NULL_Pointer_Dereference__String_22b.GoodB2G2Sink(data);
        }
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            string data = null;

            /* FIX: hardcode data to non-null */
            data = "This is not null";
            goodG2BPublicStatic = true;
            CWE476_NULL_Pointer_Dereference__String_22b.GoodG2BSink(data);
        }
        public override void Bad()
        {
            string data = null;

            /* POTENTIAL FLAW: data is null */
            data            = null;
            badPublicStatic = true;
            CWE476_NULL_Pointer_Dereference__String_22b.BadSink(data);
        }