Index: tools/json_schema_compiler/json_schema.py |
diff --git a/tools/json_schema_compiler/json_schema.py b/tools/json_schema_compiler/json_schema.py |
index 370bc9b3cb35b917fbbe70f712a3d3908c207ce4..8ee53a8dc03b633759edbc44c74ee4b55dd9b784 100644 |
--- a/tools/json_schema_compiler/json_schema.py |
+++ b/tools/json_schema_compiler/json_schema.py |
@@ -31,7 +31,6 @@ def DeleteNocompileNodes(item): |
def Load(filename): |
with open(filename, 'r') as handle: |
schemas = json_parse.Parse(handle.read()) |
- schema_util.PrefixSchemasWithNamespace(schemas) |
return schemas |
# A dictionary mapping |filename| to the object resulting from loading the JSON |