Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / examples / java / chord / FindSuccessorAnswerTask.java
index 64e49cd..5dee45f 100644 (file)
@@ -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 FindSuccessorAnswerTask extends ChordTask {
-       public int answerId;
+  public int answerId;
 
-       public FindSuccessorAnswerTask(String issuerHostname, String answerTo, int answerId) {
-               super(issuerHostname,answerTo);
-               this.answerId = answerId;
-       }
+  public FindSuccessorAnswerTask(String issuerHostname, String answerTo, int answerId) {
+    super(issuerHostname,answerTo);
+    this.answerId = answerId;
+  }
 }