/* goodB2G1() - use badsource and goodsink by setting the static variable to false instead of true */
        private void GoodB2G1()
        {
            int data = 0;

            /* POTENTIAL FLAW: Use the maximum value for this type */
            data = int.MaxValue;
            goodB2G1PublicStatic = false;
            CWE190_Integer_Overflow__int_max_square_22b.GoodB2G1Sink(data);
        }