typesystem/src/main/java/org/apache/atlas/typesystem/types/FieldMapping.java [91:109]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (s == null) {
            TypeUtils.outputVal("<null>\n", buf, "");
            return;
        }

        if (inProcess == null) {
            inProcess = new HashSet<>();
        }
        else if (inProcess.contains(s)) {
            // Avoid infinite recursion when structs reference each other.
            return;
        }
        inProcess.add(s);

        try {
            TypeUtils.outputVal("{", buf, prefix);

            TypeUtils.outputVal("\n", buf, "");
            String fieldPrefix = prefix + "\t";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



typesystem/src/main/java/org/apache/atlas/typesystem/types/FieldMapping.java [121:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (s == null) {
            TypeUtils.outputVal("<null>\n", buf, "");
            return;
        }

        if (inProcess == null) {
            inProcess = new HashSet<>();
        }
        else if (inProcess.contains(s)) {
            // Avoid infinite recursion when structs reference each other.
            return;
        }
        inProcess.add(s);

        try {
            TypeUtils.outputVal("{", buf, prefix);

            TypeUtils.outputVal("\n", buf, "");
            String fieldPrefix = prefix + "\t";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



