|
From: Miles P. <mil...@gm...> - 2007-01-29 14:49:08
|
Hi Pimin,
A bit tongue in cheek, but perhaps you should simply set your
generics warnings to "ignore"-- that's what I've done which I'm sure
gives you enormous confidence in our code quality. ;) Seriously,
leaving aside the issues involved in maintaining Java implementation
of generics, remember that what is our there is early alpha. I am
sure we will make a pass through all the warnings as we approach our
release candidate -- we will also certainly do some major QA work,
including increasing unit testing coverage, providing more automated
builds, untangling remaining code and plugin dependencies,
significant refactorings and so on...whew!
best,
Miles
On Jan 29, 2007, at 9:10 AM, Pimin Konstantin Kefaloukos wrote:
> Hi developers,
>
> This might not have top priority, but couldn't we get rid of some of
> the many warnings that are generated by the current code?
>
> And example is the following source-code:
>
>
> package repast.context;
> public class DefaultContextFactory<T> implements ContextFactory<T> {
> ...
> public Context<T> createContext(Object contextId) {
> // why not: return new DefaultContext<T>(contextId); ?
> return new DefaultContext(contextId);
> }
> }
>
> Could we not include the type-parameter and remove some of the "noise"
> from the compiling process.
>
> Also I can't find a javadoc for Repast S, has one not been made?
>
>
>
>
> Best regards,
>
>
>
> Pimin Konstantin Kefaloukos,
> Computer science department, University of Copenhagen.
> Anders Henriksens Gade 3, 2. t.h.
> 2300 Copenhagen, Denmark.
>
> ----------------------------------------------------------------------
> ---
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to
> share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?
> page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Repast-developer mailing list
> Rep...@li...
> https://lists.sourceforge.net/lists/listinfo/repast-developer
|