/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            String data = CWE690_NULL_Deref_From_Return__Class_string_61b.GoodG2BSource();
            /* POTENTIAL FLAW: data could be null */
            string stringTrimmed = data.Trim();

            IO.WriteLine(stringTrimmed);
        }