srdo commented on a change in pull request #3025: Checkstyle jms examples URL: https://github.com/apache/storm/pull/3025#discussion_r294055286
########## File path: examples/storm-jms-examples/src/main/java/org/apache/storm/jms/example/GenericBolt.java ########## @@ -15,27 +15,28 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.apache.storm.jms.example; import java.util.Map; -import org.apache.storm.topology.base.BaseRichBolt; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - import org.apache.storm.task.OutputCollector; import org.apache.storm.task.TopologyContext; import org.apache.storm.topology.OutputFieldsDeclarer; +import org.apache.storm.topology.base.BaseRichBolt; import org.apache.storm.tuple.Fields; import org.apache.storm.tuple.Tuple; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + /** * A generic <code>org.apache.storm.topology.IRichBolt</code> implementation * for testing/debugging the Storm JMS Spout and example topologies. - * <p> - * For debugging purposes, set the log level of the + * + * <p>For debugging purposes, set the log level of the * <code>org.apache.storm.contrib.jms</code> package to DEBUG for debugging - * output. + * output.</p> Review comment: No, it's fine. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
