From 22aee9a5eeb75f0dd36dfca23868375145e3ba52 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9gory=20Wisniewski?= <gregory@nexedi.com>
Date: Fri, 19 Feb 2010 16:23:06 +0000
Subject: [PATCH] Removeunused fake store monkeypatch for matrix report.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1808 71dcc9de-d417-0410-9af5-da40c76e7ee4
---
 tools/matrix | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tools/matrix b/tools/matrix
index d27bc040..efd90b45 100755
--- a/tools/matrix
+++ b/tools/matrix
@@ -8,14 +8,11 @@ import traceback
 from time import time
 
 from neo.tests.functional import NEOCluster
-from neo.client.Storage import Storage
 from ZODB.FileStorage import FileStorage
 
 def run(masters, storages, replicas, partitions, datafs, verbose):
     print "Import of %s with m=%s, s=%s, r=%s, p=%s" % (
             datafs, masters, storages, replicas, partitions)
-    def store(*args):
-        pass
     # cluster
     neo = NEOCluster(
         db_list=['test_import_%d' % i for i in xrange(storages)],
@@ -28,7 +25,6 @@ def run(masters, storages, replicas, partitions, datafs, verbose):
     # import
     neo_storage = neo.getZODBStorage()
     dfs_storage = FileStorage(file_name=datafs)
-    # Storage.store = store
     neo.start()
     start = time()
     try:
-- 
2.30.9