mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-09-27 08:05:46 +00:00
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:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user