Skip to content

Commit

Permalink
Remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Decker committed Sep 3, 2024
1 parent ce2eb9e commit 48b1ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/generator/java/java.stoneg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2586,6 +2586,7 @@ def generate_client(self):

def generate_namespace(self, namespace):
assert isinstance(namespace, ApiNamespace), repr(namespace)

j = self.j

# add documentation to our packages
Expand Down Expand Up @@ -2678,7 +2679,6 @@ def generate_namespace_routes(self, namespace):
w.out('this.client = client;')

for route in namespace.routes:
print("++++++++ " + namespace.name + " " + route.name)
w.out('')
w.out('//')
w.out('// route %s', j.url_path(route))
Expand Down

0 comments on commit 48b1ca0

Please sign in to comment.