master broken

4 views
Skip to first unread message

Jing Xue

unread,
Aug 29, 2009, 4:06:53 PM8/29/09
to eclim-dev
I just pulled from master and got this compile error:

[javac] /home/jingxue/workspace/oss/eclim/src/java/org/eclim/
eclipse/AbstractEclimApplication.java:113: cannot find symbol
[javac] symbol : constructor NGServer(<nulltype>,int)
[javac] location: class com.martiansoftware.nailgun.NGServer
[javac] server = new NGServer(null, port);
[javac] ^

Could be fixed by the patch attached.

Cheers.
--
Jing

diff --git a/src/java/org/eclim/eclipse/AbstractEclimApplication.java
b/src/java/org/eclim/eclipse/AbstractEclimApplication.java
index 4221477..35b5ea7 100644
--- a/src/java/org/eclim/eclipse/AbstractEclimApplication.java
+++ b/src/java/org/eclim/eclipse/AbstractEclimApplication.java
@@ -110,7 +110,7 @@ public abstract class AbstractEclimApplication
.getProperty("nailgun.server.port");
int port = Integer.parseInt(portString);
logger.info("Eclim Server Started on port " + port + '.');
- server = new NGServer(null, port);
+ server = new NGServer(null, port, null);
starting = false;
server.run();
}else{

Eric Van Dewoestine

unread,
Aug 29, 2009, 4:50:14 PM8/29/09
to ecli...@googlegroups.com
On Sat, Aug 29, 2009 at 1:06 PM, Jing Xue<jing...@gmail.com> wrote:
>
> I just pulled from master and got this compile error:

I mistakenly checked in some changes without checking in others. The
latest git master should build now.

Thank you for reporting this.

--
eric

Jing Xue

unread,
Aug 29, 2009, 6:33:59 PM8/29/09
to eclim-dev



On Aug 29, 4:50 pm, Eric Van Dewoestine <ervan...@gmail.com> wrote:
>
> I mistakenly checked in some changes without checking in others.  The
> latest git master should build now.

The eclimd view has problems starting up now. In the view I see:

2009-08-29 17:36:30,931 INFO
[org.eclim.eclipse.AbstractEclimApplication] Starting eclim...
2009-08-29 17:36:30,933 INFO
[org.eclim.eclipse.AbstractEclimApplication] Loading plugin org.eclim
2009-08-29 17:36:30,953 INFO
[org.eclim.eclipse.AbstractEclimApplication] Loading plugin
org.eclim.core
2009-08-29 17:36:31,133 INFO [org.eclim.plugin.core.CorePlugin]
Loading eclim plugins...
2009-08-29 17:36:31,162 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.dltk
2009-08-29 17:36:31,165 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.dltkruby
2009-08-29 17:36:31,167 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.wst
2009-08-29 17:36:31,184 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.ant
2009-08-29 17:36:31,185 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.jdt
2009-08-29 17:36:31,187 INFO [org.eclim.plugin.core.CorePlugin]
Loading plugin org.eclim.maven
2009-08-29 17:36:31,188 INFO [org.eclim.plugin.core.CorePlugin]
Plugins loaded.
2009-08-29 17:36:31,188 INFO
[org.eclim.eclipse.AbstractEclimApplication] Loaded plugin
org.eclim.core
2009-08-29 17:36:31,190 ERROR
[org.eclim.eclipse.AbstractEclimApplication] Error starting eclim:
java.lang.NullPointerException
at org.eclim.eclipse.AbstractEclimApplication.start
(AbstractEclimApplication.java:115)
at org.eclim.eclipse.headed.EclimdView$EclimThread.run
(EclimdView.java:126)


I bisected it and it seems that
1ea23d1a28e558c7c7c27a7d85e89e122ac5af87 introduced this problem.

Cheers.
--
Jing

Jing Xue

unread,
Aug 29, 2009, 6:35:00 PM8/29/09
to eclim-dev


On Aug 29, 6:33 pm, Jing Xue <jing....@gmail.com> wrote:
> The eclimd view has problems starting up now. In the view I see:

This only happens in eclipse. The headless eclimd starts up fine by
the way.
--
Jing

Eric Van Dewoestine

unread,
Aug 29, 2009, 6:55:50 PM8/29/09
to ecli...@googlegroups.com

Yeah, I see the issue. I've just checked in a fix for it. Sorry about
the instability... I've been moving some things around to support new
features.

--
eric

Jing Xue

unread,
Aug 29, 2009, 7:13:30 PM8/29/09
to eclim-dev


On Aug 29, 6:55 pm, Eric Van Dewoestine <ervan...@gmail.com> wrote:
>
> Yeah, I see the issue. I've just checked in a fix for it.  Sorry about
> the instability... I've been moving some things around to support new
> features.

Cool... works now. No problem at all. Thanks for the quick response.
--
Jing

Jing Xue

unread,
Aug 30, 2009, 6:04:50 PM8/30/09
to eclim-dev


On Aug 29, 6:33 pm, Jing Xue <jing....@gmail.com> wrote:
> I bisected it and it seems that
> 1ea23d1a28e558c7c7c27a7d85e89e122ac5af87 introduced this problem.

Hi Eric,

This commit seems to also break the templates. My templates under .vim/
eclim/resources/jdt/templates are all ignored.

Cheers
--
Jing

Eric Van Dewoestine

unread,
Aug 30, 2009, 7:16:29 PM8/30/09
to ecli...@googlegroups.com

Are you using the latest eclim head? The following change set from
yesterday should have resolved that issue:

http://eclim.git.sourceforge.net/git/gitweb.cgi?p=eclim/eclim;a=commit;h=6a3c42d0fa701a32dd70508f3f1fc437a24986aa

If that doesn't fix the issue, check that the vim.files property in
$ECLIPSE_HOME/plugins/org.eclim_<version>/plugin.properties is
correct. If it is and eclim is still not recognizing your templates,
let me know and I'll dig further.

--
eric

Jing Xue

unread,
Sep 1, 2009, 9:34:28 PM9/1/09
to eclim-dev


On Aug 30, 7:16 pm, Eric Van Dewoestine <ervan...@gmail.com> wrote:
>
> Are you using the latest eclim head?  The following change set from
> yesterday should have resolved that issue:
>
> http://eclim.git.sourceforge.net/git/gitweb.cgi?p=eclim/eclim;a=commi...

I've got 0a6fdc3a5ff837cc66b6088af3522b29d8562f02 and it's much better
now. :)

Thanks.
--
Jing
Reply all
Reply to author
Forward
0 new messages