oh mist vergessen
fix kommt in svn 4530
Am 05.03.2008 um 23:18 schrieb Daniel:
> Hi,
>
> ich kann 4529 nicht kompilieren:
>
> Es fehlt die Klasse/Interface 'serverProcess'. Nur nicht commited
> oder Bug?
>
> compileMain:
> [javac] Compiling 1 source file to /path/to/yacy/classes
> [javac]
> /path/to/yacy/source/de/anomic/server/serverProcessor.java:38: cannot
> find symbol
> [javac] symbol : class serverProcess
> [javac] location: class de.anomic.server.serverProcessor.queue<I,O>
> [javac] serverProcess<I, O> implementation;
> [javac] ^
> [javac]
> /path/to/yacy/source/de/anomic/server/serverProcessor.java:42: cannot
> find symbol
> [javac] symbol : class serverProcess
> [javac] location: class de.anomic.server.serverProcessor.queue<I,O>
> [javac] public queue(String nickname, int priority,
> serverProcess<I, O> implementation) {
> [javac] ^
> [javac] 2 errors
>
> BUILD FAILED
> /path/to/yacy/build.xml:192: Compile failed; see the compiler error
> output for details.
>
>
> Gruß
> Daniel
>
> orbiter at BerliOS schrieb:
>> Author: orbiter Date: 2008-03-05 22:46:55 +0100 (Wed, 05 Mar 2008)
>> New Revision: 4529
>>
>> Log: - some refactoring in search process - separated sidebars in new
>> search interface and placed them in their own files which can be put
>> in into the search page like plug-ins
>>
>> Modified: trunk/source/de/anomic/server/serverProcessor.java
>> ===================================================================
>> --- trunk/source/de/anomic/server/serverProcessor.java 2008-03-05
>> 18:56:01 UTC (rev 4528) +++
>> trunk/source/de/anomic/server/serverProcessor.java 2008-03-05
>> 21:46:55 UTC (rev 4529) @@ -24,10 +24,29 @@
>>
>> package de.anomic.server;
>>
>> +import java.util.concurrent.LinkedBlockingQueue;
>>
>> + public class serverProcessor {
>>
>> public static final int availableCPU =
>> Runtime.getRuntime().availableProcessors(); public static int
>> useCPU = availableCPU; + + public static class queue<I, O> { +
>> String nickname; + int priority; + serverProcess<I, O>
>> implementation; + LinkedBlockingQueue<I> inputQueue; +
>> LinkedBlockingQueue<O> outputQueue; + + public queue(String
>> nickname, int priority, serverProcess<I, O> implementation) { +
>> this.nickname = nickname; + this.priority = priority; +
>> this.implementation = implementation; + this.inputQueue =
>> new LinkedBlockingQueue<I>(); + this.outputQueue = new
>> LinkedBlockingQueue<O>(); + } + }
>>
>> + }
>>
>> _______________________________________________ YaCy-svn mailing list
>> [email protected]
>> https://lists.berlios.de/mailman/listinfo/yacy-svn
>>
>
>
> _______________________________________________
> YaCy-svn mailing list
> [email protected]
> https://lists.berlios.de/mailman/listinfo/yacy-svn
_______________________________________________
YaCy-svn mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/yacy-svn