Re: help needed - decompiling
- From: Thomas Fritsch <i.dont.like.spam@xxxxxxxxxxx>
- Date: Thu, 30 Mar 2006 11:22:24 GMT
Allan M. Bruce wrote:
Obviously the decompiler has problems with decompiling 'synchronized' (and its accompanying catch-all statement generated by the compiler).
Maybe I didnt specify the correct options, but I have a lot of errors, here is a couple which seem to be repeated:
public User getUser(String xiName, int xiConfID)
{
Object obj = mSema4;
JVM INSTR monitorenter ;
return (User)mUsersByName.get((new StringBuilder()).append(xiName).append(":").append(xiConfID).toString());
Exception exception;
exception;
throw exception;
}
I would guess your original source was something like this:
public User getUser(String xiName, int xiConfID)
{
synchronized (mSema4)
{
return (User) mUsersByName.get(xiName + ":" + xiConfID);
}
}
--
"Thomas:Fritsch$ops:de".replace(':','.').replace('$','@')
.
- References:
- help needed - decompiling
- From: Allan M. Bruce
- Re: help needed - decompiling
- From: Roedy Green
- Re: help needed - decompiling
- From: Allan M. Bruce
- help needed - decompiling
- Prev by Date: Re: Javadoc search tool ... is this new ???
- Next by Date: Re: Gui Question
- Previous by thread: Re: help needed - decompiling
- Next by thread: Re: help needed - decompiling
- Index(es):