Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / dht / kademlia / Bucket.java
index 8828107..327c8f4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012-2020. The SimGrid Team.
+/* Copyright (c) 2012-2022. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -44,7 +44,7 @@ public class Bucket {
     return nodes.get(id);
   }
 
-  /* Add the content of the bucket into a answer object. */
+  /* Add the content of the bucket into an answer object. */
   public void addToAnswer(Answer answer, int destination) {
     for (int nodeId : this.nodes) {
       answer.getNodes().add(new Contact(nodeId,nodeId ^ destination));