[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
Re: [aspectj-users] Overall problem with AJDT performance
|
- From: Andrew Eisenberg <andrew@xxxxxxxxxxxx>
- Date: Sun, 11 Oct 2009 22:51:55 -0700
- Delivered-to: aspectj-users@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:reply-to:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=v28c7T1JudLqBhr83VNuZZDK0KHsH2PqD/ECM68uS8U=; b=AgfeD4/QMgiTloUce1StLKp2fCQUc/piifWgYoKlj0oijNbV/xg3elFB0jtm09XV9W ctiYsyweZVpkBYKwSgF6zEpCA58avbyYt2rU9eIznVOHdlCJ/gtoR5+bqXoUWru4AUdy K2mf8QiHj1kcnygO2du92SLk8Nd4pMmrV0Jow=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:reply-to:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=hLyGoGs5aJjysvrBFZzj/PGO3R0PtCKedewMM9KQi1lz8V2paEWwM0Xsb1OAa4S97B 7JCkRJ8vvOsacz9IP14QVlgDasrXiscFppqTj4iNWNQtb8BUXs4nJom4WYrKamWtXVFU puVBVhYhPURk7VUv08f/s7+HCczSRhsuS1QSE=
Hi Thomas,
Those AJDT exceptions you are seeing are happening because reflective
access to a private field is failing. I believe that this is a
multi-threading issue and I will let you know when I put a fix in for
that. The exceptions that you are seeing are not having an affect on
the running of your code. After the exception is thrown, the default
value for the field is being used, which is the value that would have
been calculated had the exception not been thrown.
--a