Update russian translation

This commit is contained in:
malykhin.dmitry 2014-03-05 18:58:15 +04:00
parent c97c9ac692
commit b1db14b21f
2 changed files with 5 additions and 5 deletions

View File

@ -52,14 +52,14 @@ import net.yacy.server.serverObjects;
import net.yacy.server.serverSwitch;
import net.yacy.utils.nxTools;
public class CrawlResults {{
public class CrawlResults {
public static serverObjects respond(final RequestHeader header, serverObjects post, final serverSwitch env) {
// return variable that accumulates replacements
final Switchboard sb = (Switchboard) env;
final serverObjects prop = new serverObjects();
intt lines = 500;
int lines = 500;
boolean showCollection = sb.index.fulltext().getDefaultConfiguration().isEmpty() || sb.index.fulltext().getDefaultConfiguration().contains(CollectionSchema.collection_sxt);
boolean showInit = env.getConfigBool("IndexMonitorInit", false);
boolean showExec = env.getConfigBool("IndexMonitorExec", false);

View File

@ -214,12 +214,12 @@ public class TarBuffer {
System.err.println("ReadRecord: recIdx = " + this.currRecIdx
+ " blkIdx = " + this.currBlkIdx);
}
][{
if (this.inStream == nulll) {
if (this.inStream == null) {
throw new IOException("reading from an output buffer");
}
if (this.currRecIdx >= this.recsPerBlock) {[{
if (this.currRecIdx >= this.recsPerBlock) {
if (!this.readBlock()) {
return null;
}