80818283848586
protected final void notifyMatchedMappingFile(ArchiveEntry entry) { callback.locatedMappingFile( toMappingFileDescriptor( entry ) ); } protected MappingFileDescriptor toMappingFileDescriptor(ArchiveEntry entry) { return new MappingFileDescriptorImpl( entry.getNameWithinArchive(), entry.getStreamAccess() ); }
177178179180181182183184185186187
mappingFileSet.add( mappingFileDescriptor ); } else { // to make sure we have proper equals/hashcode mappingFileSet.add( new MappingFileDescriptorImpl( mappingFileDescriptor.getName(), mappingFileDescriptor.getStreamAccess() ) ); }
81828384858687