aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/peerstore
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/gnunet/peerstore')
-rw-r--r--src/main/java/org/gnunet/peerstore/IterateRequest.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/Peerstore.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/PeerstoreReceiver.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/StoreOption.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/WatchRequest.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateMessage.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java4
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/StoreMessage.java4
9 files changed, 18 insertions, 18 deletions
diff --git a/src/main/java/org/gnunet/peerstore/IterateRequest.java b/src/main/java/org/gnunet/peerstore/IterateRequest.java
index 38a53c9..b8de850 100644
--- a/src/main/java/org/gnunet/peerstore/IterateRequest.java
+++ b/src/main/java/org/gnunet/peerstore/IterateRequest.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore; 21package org.gnunet.peerstore;
diff --git a/src/main/java/org/gnunet/peerstore/Peerstore.java b/src/main/java/org/gnunet/peerstore/Peerstore.java
index a111005..328c6cb 100644
--- a/src/main/java/org/gnunet/peerstore/Peerstore.java
+++ b/src/main/java/org/gnunet/peerstore/Peerstore.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore; 21package org.gnunet.peerstore;
diff --git a/src/main/java/org/gnunet/peerstore/PeerstoreReceiver.java b/src/main/java/org/gnunet/peerstore/PeerstoreReceiver.java
index 0688337..c34c7c3 100644
--- a/src/main/java/org/gnunet/peerstore/PeerstoreReceiver.java
+++ b/src/main/java/org/gnunet/peerstore/PeerstoreReceiver.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore; 21package org.gnunet.peerstore;
diff --git a/src/main/java/org/gnunet/peerstore/StoreOption.java b/src/main/java/org/gnunet/peerstore/StoreOption.java
index d7d0960..0bebd44 100644
--- a/src/main/java/org/gnunet/peerstore/StoreOption.java
+++ b/src/main/java/org/gnunet/peerstore/StoreOption.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore; 21package org.gnunet.peerstore;
diff --git a/src/main/java/org/gnunet/peerstore/WatchRequest.java b/src/main/java/org/gnunet/peerstore/WatchRequest.java
index e51fe42..35056cd 100644
--- a/src/main/java/org/gnunet/peerstore/WatchRequest.java
+++ b/src/main/java/org/gnunet/peerstore/WatchRequest.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore; 21package org.gnunet.peerstore;
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java
index c49d783..0a01c53 100644
--- a/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore.messages; 21package org.gnunet.peerstore.messages;
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java
index 7269564..5fd010d 100644
--- a/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore.messages; 21package org.gnunet.peerstore.messages;
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java
index 9fa6c86..6ce5578 100644
--- a/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore.messages; 21package org.gnunet.peerstore.messages;
diff --git a/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java b/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java
index c150b90..a5de8ec 100644
--- a/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java
+++ b/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java
@@ -14,8 +14,8 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21package org.gnunet.peerstore.messages; 21package org.gnunet.peerstore.messages;