You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hama.apache.org by Martin Illecker <mi...@apache.org> on 2013/08/25 17:56:20 UTC

Fixed wrong Log package in BSPJob

Hi,

I have fixed the wrong *Log* package
(com.sun.org.apache.commons.logging.Log) in BSPJob.

Use

import org.apache.commons.logging.Log;
> import org.apache.commons.logging.LogFactory;


instead of

import com.sun.org.apache.commons.logging.Log;
> import com.sun.org.apache.commons.logging.LogFactory;



With the agreement of Edward I have committed this directly.

Martin