Skip to content

Commit

Permalink
Remove unused Namespace class
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Sep 25, 2024
1 parent 1e2c26e commit 175e372
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions base/server/python/pki/server/deployment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ def __init__(self):

self.instance = None
self.identity = None
self.namespace = None
self.configuration_file = None
self.war = None
self.password = None
Expand Down Expand Up @@ -184,7 +183,6 @@ def init(self):

# Utility objects
self.identity = util.Identity(self)
self.namespace = util.Namespace(self)
self.configuration_file = util.ConfigurationFile(self)
self.password = util.Password(self)
self.hsm = util.HSM(self)
Expand Down
9 changes: 0 additions & 9 deletions base/server/python/pki/server/deployment/pkihelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,6 @@ def add_user_to_group(self, pki_user, pki_group):
return


class Namespace:
"""PKI Deployment Namespace Class"""

# Silently verify that the selected 'pki_instance_name' will
# NOT produce any namespace collisions
def __init__(self, deployer):
self.mdict = deployer.mdict


class ConfigurationFile:
"""PKI Deployment Configuration File Class"""

Expand Down

0 comments on commit 175e372

Please sign in to comment.