ObjectConverter changes for revisions 29877:29878

The original interface is work from the Open Planning Project. See the discussion at revision 22626 for more information.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r29877:29878 https://svn.osgeo.org/geotools/trunk/modules/library/api/src/main/java/org/geotools/util/Converter.java
Revision 29877Revision 29878
     *
     * @throws Exception If the conversion can not take place.
     */
    Object convert(Object source, Class target) throws Exception;
}
     *
     * @throws Exception If the conversion can not take place.
     */
    <T> T convert(Object source, Class<T> target) throws Exception;
}