Skip to content

Commit

Permalink
removed very bad bug that prevented production of any remote search r…
Browse files Browse the repository at this point in the history
…esult

:-(((
Please update!

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2724 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Oct 9, 2006
1 parent f0d747c commit 86047f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.properties
Expand Up @@ -3,7 +3,7 @@ javacSource=1.4
javacTarget=1.4

# Release Configuration
releaseVersion=0.472
releaseVersion=0.473
releaseFile=yacy_dev_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz
#releaseFile=yacy_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz
releaseDir=yacy_dev_v${releaseVersion}_${DSTAMP}_${releaseNr}
Expand Down
2 changes: 1 addition & 1 deletion source/de/anomic/kelondro/kelondroRowCollection.java
Expand Up @@ -296,7 +296,7 @@ public void remove() {

public void select(Set keys) {
// removes all entries but the ones given by urlselection
if (keys == null) return;
if ((keys == null) || (keys.size() == 0)) return;
synchronized (this) {
Iterator i = rows();
kelondroRow.Entry row;
Expand Down

0 comments on commit 86047f4

Please sign in to comment.