|
From: Pimin K. K. <spa...@gm...> - 2007-01-29 14:10:05
|
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.
|