X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e9105988280d1e88b5b496d6e2eed4c8d541883..4a6b0a991a67e6f2f67c03fed43529e078da7115:/examples/java/kademlia/PingTask.java?ds=sidebyside diff --git a/examples/java/kademlia/PingTask.java b/examples/java/kademlia/PingTask.java index 84fcccf046..eacfb1d750 100644 --- a/examples/java/kademlia/PingTask.java +++ b/examples/java/kademlia/PingTask.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2012. The SimGrid Team. +/* Copyright (c) 2012-2014, 2016. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,14 +6,8 @@ package kademlia; -/** - * @brief "PING" task sent by a node to another to see if it is still alive - */ public class PingTask extends KademliaTask { - /** - * Constructor - */ - public PingTask(int senderId) { - super(senderId); - } + public PingTask(int senderId) { + super(senderId); + } }