mirror of
https://github.com/apache/archiva.git
synced 2025-03-07 00:49:49 +00:00
remove cache that caused BytecodeIndexTest to erroneously pass, fix test
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@630859 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dcaeec7ff7
commit
056b02a968
@ -59,6 +59,8 @@ protected LuceneRepositoryContentRecord createSimpleRecord()
|
||||
ArchivaArtifact artifact = (ArchivaArtifact) dumps.get( "archiva-common" );
|
||||
|
||||
File dumpFile = getDumpFile( artifact );
|
||||
return BytecodeRecordLoader.loadRecord( dumpFile, artifact );
|
||||
BytecodeRecord record = BytecodeRecordLoader.loadRecord( dumpFile, artifact );
|
||||
record.setRepositoryId( "test-repo" );
|
||||
return record;
|
||||
}
|
||||
}
|
||||
|
@ -19,6 +19,7 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import junit.framework.AssertionFailedError;
|
||||
import org.apache.maven.archiva.model.ArchivaArtifact;
|
||||
import org.apache.maven.archiva.model.ArchivaArtifactJavaDetails;
|
||||
import org.apache.maven.archiva.model.platform.JavaArtifactHelper;
|
||||
@ -29,10 +30,6 @@
|
||||
import java.io.FileReader;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import junit.framework.AssertionFailedError;
|
||||
|
||||
/**
|
||||
* BytecodeRecordLoader - Utility method for loading dump files into BytecordRecords.
|
||||
@ -42,15 +39,16 @@
|
||||
*/
|
||||
public class BytecodeRecordLoader
|
||||
{
|
||||
private static Map cache = new HashMap();
|
||||
// private static Map cache = new HashMap();
|
||||
|
||||
public static BytecodeRecord loadRecord( File dumpFile, ArchivaArtifact artifact )
|
||||
{
|
||||
BytecodeRecord record = (BytecodeRecord) cache.get( artifact );
|
||||
if ( record != null )
|
||||
{
|
||||
return record;
|
||||
}
|
||||
BytecodeRecord record;
|
||||
// record = (BytecodeRecord) cache.get( artifact );
|
||||
// if ( record != null )
|
||||
// {
|
||||
// return record;
|
||||
// }
|
||||
|
||||
record = new BytecodeRecord();
|
||||
record.setArtifact( artifact );
|
||||
@ -131,7 +129,7 @@ else if ( line.startsWith( "FILE|" ) )
|
||||
IOUtil.close( freader );
|
||||
}
|
||||
|
||||
cache.put( artifact, record );
|
||||
// cache.put( artifact, record );
|
||||
|
||||
return record;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user