From 7bfed5d81b97d74bb4f78db36f4e00d456be6e1b Mon Sep 17 00:00:00 2001
From: John Chilton <jmchilton@gmail.com>
Date: Wed, 1 May 2019 16:44:30 -0400
Subject: [PATCH] Remove unused method.

---
 pulsar/client/action_mapper.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/pulsar/client/action_mapper.py b/pulsar/client/action_mapper.py
index 4bbc6fb6..e95dd0f1 100644
--- a/pulsar/client/action_mapper.py
+++ b/pulsar/client/action_mapper.py
@@ -2,7 +2,6 @@ import fnmatch
 import tempfile
 
 from contextlib import contextmanager
-from json import load
 from os import makedirs
 from os import unlink
 from os.path import (
@@ -204,10 +203,6 @@ class FileActionMapper(object):
                 config[attr] = getattr(client, attr)
         return config
 
-    def __load_action_config(self, path):
-        config = load(open(path, 'rb'))
-        self.mappers = mappers_from_dicts(config.get('paths', []))
-
     def __find_mapper(self, path, type, mapper=None):
         if not mapper:
             normalized_path = abspath(path)
-- 
GitLab