X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e37c1e4bba9bb89cd2842f08cde998eb7f941d04..d3154c75960afc4f3fe7e53c835e35f2584ed97a:/examples/java/chord/FindSuccessorTask.java diff --git a/examples/java/chord/FindSuccessorTask.java b/examples/java/chord/FindSuccessorTask.java index 8708469d96..b8f84c2b87 100644 --- a/examples/java/chord/FindSuccessorTask.java +++ b/examples/java/chord/FindSuccessorTask.java @@ -1,16 +1,16 @@ -/* - * 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 FindSuccessorTask extends ChordTask { - public int requestId; - - public FindSuccessorTask(String issuerHostname, String answerTo, int requestId) { - super(issuerHostname, answerTo); - this.requestId = requestId; - } + public int requestId; + + public FindSuccessorTask(String issuerHostname, String answerTo, int requestId) { + super(issuerHostname, answerTo); + this.requestId = requestId; + } }