*) use a more compact for plasmaWordIndexAssortmentImporter.java because the long name

caused problems during untar operation

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2206 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent 4ca0857c0c
commit fb090652df

@ -8,7 +8,7 @@ import de.anomic.kelondro.kelondroRow;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.plasma.plasmaWordIndexAssortment;
public class plasmaWordIndexAssortmentImporter extends AbstractImporter implements dbImporter{
public class AssortmentImporter extends AbstractImporter implements dbImporter{
private int importStartSize;
private int wordEntityCount = 0;
@ -17,7 +17,7 @@ public class plasmaWordIndexAssortmentImporter extends AbstractImporter implemen
private File importAssortmentFile;
private plasmaWordIndexAssortment assortmentFile;
public plasmaWordIndexAssortmentImporter(plasmaSwitchboard sb) {
public AssortmentImporter(plasmaSwitchboard sb) {
super(sb);
this.jobType = "ASSORTMENT";
}

@ -61,7 +61,7 @@ public class dbImportManager {
if (type.equals("plasmaDB")) {
newImporter = new plasmaDbImporter(this.sb);
} else if (type.equalsIgnoreCase("ASSORTMENT")) {
newImporter = new plasmaWordIndexAssortmentImporter(this.sb);
newImporter = new AssortmentImporter(this.sb);
} else if (type.equalsIgnoreCase("NURL")) {
newImporter = new plasmaCrawlNURLImporter(this.sb);
}

Loading…
Cancel
Save