Remove PathFixupListener, which was only used for SurtPrefixedDecideRule initialization, now done differently as of r7218.

* ConfigPathConfigurer.java
    remove calls to PathFixupListener
* PathFixupListener.java
    removed
This commit is contained in:
nlevitt
2011-07-25 23:10:02 +00:00
parent a103c5f05c
commit 3a4419967d
2 changed files with 0 additions and 31 deletions
@@ -133,9 +133,6 @@ implements
}
}
}
if(bean instanceof PathFixupListener) {
((PathFixupListener)bean).pathsFixedUp();
}
return bean;
}
@@ -1,28 +0,0 @@
/*
* This file is part of the Heritrix web crawler (crawler.archive.org).
*
* Licensed to the Internet Archive (IA) by one or more individual
* contributors.
*
* The IA licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.archive.spring;
/**
* Interface for notifying a bean that its ConfigPath relative paths
* have been fixed-up.
*/
public interface PathFixupListener {
public void pathsFixedUp();
}