X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a87962ff2bd64e3c863ea894dd745647e380c93..f2ad0175ed569f3cfa5df330ec4174d7fe7b1229:/examples/java/chord/GetPredecessorAnswerTask.java diff --git a/examples/java/chord/GetPredecessorAnswerTask.java b/examples/java/chord/GetPredecessorAnswerTask.java index c3d1724e4f..d8a9a9a4e8 100644 --- a/examples/java/chord/GetPredecessorAnswerTask.java +++ b/examples/java/chord/GetPredecessorAnswerTask.java @@ -1,15 +1,15 @@ -/* - * Copyright 2006-2012. The SimGrid Team. All rights reserved. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. - */ +/* Copyright (c) 2006-2014. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + package chord; public class GetPredecessorAnswerTask extends ChordTask { - public int answerId; - public GetPredecessorAnswerTask(String issuerHostname, String answerTo, int answerId) { - super(issuerHostname,answerTo); - this.answerId = answerId; - } + public int answerId; + public GetPredecessorAnswerTask(String issuerHostname, String answerTo, int answerId) { + super(issuerHostname,answerTo); + this.answerId = answerId; + } }