Re: XCode 1.5 Java Indexer bugs
Re: XCode 1.5 Java Indexer bugs
- Subject: Re: XCode 1.5 Java Indexer bugs
- From: Christian Pekeler <email@hidden>
- Date: Thu, 19 Aug 2004 15:43:54 -0600
On Aug 6, 2004, at 9:43 AM, Martin Kahr wrote:
In XCode 1.5 I found the following bugs regarding the Java Indexer
(bug already reported)
1) Java package definiton crashes the indexer
It's really a very annoying bug. I am wondering if someone at apple
really uses XCode for Java Development.
(or does nobody need a Singleton, ...?)
When I add a package declaration to the following simple code:
public class IndexerBug {
private IndexerBug a;
public IndexerBug() {
}
}
I'm having the same problem and it is a serious show stopper for me.
After confirming about 4 panels for "unable to delete reference", Xcode
just hangs and needs to be killed and restarted. A possible workaround
is
public class MySingleton {
private Object sharedInstance;
public static MySingleton sharedInstance() {
//...
return (MySingleton)sharedInstance;
}
On my project though, where all the other teammates are using Eclipse,
such a workaround is unfortunately unacceptable.
Christian
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.