/* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            StreamReader data = null;

            /* FIX: Open, but do not close the file in the source */
            data = File.OpenText(@"GoodSource_OpenText.txt");
            goodG2BPublicStatic = true;
            CWE675_Duplicate_Operations_on_Resource__OpenText_22b.GoodG2BSink(data);
        }