Ouch, indeed !
2009/7/28 Meikel Brandmeyer
>
> Hi,
>
> On Jul 28, 1:32 pm, Laurent PETIT wrote:
>
> > The following:
> > :constructors [[] []]
>
> Hmm... shouldn't this be a map?
>
> :constructors {[] []}
>
> Sincerely
> Meikel
>
> >
>
--~--~-~--~~~---~--~~
You
Hi,
On Jul 28, 1:32 pm, Laurent PETIT wrote:
> The following:
> :constructors [[] []]
Hmm... shouldn't this be a map?
:constructors {[] []}
Sincerely
Meikel
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Cloju
No, it was :constructors [[] []] which caused the default constructor to be
declared twice
2009/7/28 John Harrop
> On Tue, Jul 28, 2009 at 1:47 AM, Laurent PETIT wrote:
>
>> Do you know what could cause this "repetitive method name/signature in
>> class" ?
>
>
>
>>:exposes-methods {addPages
On Tue, Jul 28, 2009 at 1:47 AM, Laurent PETIT wrote:
> Do you know what could cause this "repetitive method name/signature in
> class" ?
>:exposes-methods {addPages super-addPages}))
>
Is it possible that exposing both addPages and the superclass addPages
causes this? Try it without super
Thanks to Christophe who pointed me to the javap utility, I was able to see
which method was problematic. In fact it was the constructor.
The following:
:constructors [[] []]
in the following gen-class call:
(:gen-class
:name classpath.issue.GranuleImportWizardImpl
:extendsorg.ecl
I will, but in private ?
2009/7/28 Christophe Grand
> Hi Laurent,
>
> Could you provide the faulty class file?
>
> On Tue, Jul 28, 2009 at 7:47 AM, Laurent PETIT wrote:
>
>> Hello,
>>
>> I'm trying to make clojure and Eclipse play well together for writing
>> Eclipse plugins.
>>
>> I have played
Hi Laurent,
Could you provide the faulty class file?
On Tue, Jul 28, 2009 at 7:47 AM, Laurent PETIT wrote:
> Hello,
>
> I'm trying to make clojure and Eclipse play well together for writing
> Eclipse plugins.
>
> I have played with (proxy) but I encountered classloader problems that are
> curren