aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/gns
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/gnunet/gns')
-rw-r--r--src/main/java/org/gnunet/gns/Gns.java4
-rw-r--r--src/main/java/org/gnunet/gns/GnsRecord.java4
-rw-r--r--src/main/java/org/gnunet/gns/LookupResultProcessor.java4
-rw-r--r--src/main/java/org/gnunet/gns/RecordFlags.java4
-rw-r--r--src/main/java/org/gnunet/gns/messages/ClientLookupMessage.java4
-rw-r--r--src/main/java/org/gnunet/gns/messages/ClientLookupResultMessage.java8
-rw-r--r--src/main/java/org/gnunet/gns/package-info.java4
-rw-r--r--src/main/java/org/gnunet/gns/records/ARecordData.java4
-rw-r--r--src/main/java/org/gnunet/gns/records/RecordData.java4
-rw-r--r--src/main/java/org/gnunet/gns/records/UnknownRecordData.java4
-rw-r--r--src/main/java/org/gnunet/gns/records/package-info.java4
11 files changed, 24 insertions, 24 deletions
diff --git a/src/main/java/org/gnunet/gns/Gns.java b/src/main/java/org/gnunet/gns/Gns.java
index b67486b..e62dd7c 100644
--- a/src/main/java/org/gnunet/gns/Gns.java
+++ b/src/main/java/org/gnunet/gns/Gns.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.gns; 21package org.gnunet.gns;
diff --git a/src/main/java/org/gnunet/gns/GnsRecord.java b/src/main/java/org/gnunet/gns/GnsRecord.java
index e58d9d4..2548886 100644
--- a/src/main/java/org/gnunet/gns/GnsRecord.java
+++ b/src/main/java/org/gnunet/gns/GnsRecord.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
21 21
diff --git a/src/main/java/org/gnunet/gns/LookupResultProcessor.java b/src/main/java/org/gnunet/gns/LookupResultProcessor.java
index d1c0ff2..180050c 100644
--- a/src/main/java/org/gnunet/gns/LookupResultProcessor.java
+++ b/src/main/java/org/gnunet/gns/LookupResultProcessor.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.gns; 21package org.gnunet.gns;
diff --git a/src/main/java/org/gnunet/gns/RecordFlags.java b/src/main/java/org/gnunet/gns/RecordFlags.java
index 8eb1c1a..cb8056f 100644
--- a/src/main/java/org/gnunet/gns/RecordFlags.java
+++ b/src/main/java/org/gnunet/gns/RecordFlags.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.gns; 21package org.gnunet.gns;
diff --git a/src/main/java/org/gnunet/gns/messages/ClientLookupMessage.java b/src/main/java/org/gnunet/gns/messages/ClientLookupMessage.java
index f489ba5..00286bd 100644
--- a/src/main/java/org/gnunet/gns/messages/ClientLookupMessage.java
+++ b/src/main/java/org/gnunet/gns/messages/ClientLookupMessage.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.gns.messages; 21package org.gnunet.gns.messages;
diff --git a/src/main/java/org/gnunet/gns/messages/ClientLookupResultMessage.java b/src/main/java/org/gnunet/gns/messages/ClientLookupResultMessage.java
index 3676151..339265c 100644
--- a/src/main/java/org/gnunet/gns/messages/ClientLookupResultMessage.java
+++ b/src/main/java/org/gnunet/gns/messages/ClientLookupResultMessage.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
21/* 21/*
@@ -34,8 +34,8 @@
34 34
35 You should have received a copy of the GNU General Public License 35 You should have received a copy of the GNU General Public License
36 along with GNUnet; see the file COPYING. If not, write to the 36 along with GNUnet; see the file COPYING. If not, write to the
37 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 37 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
38 Boston, MA 02111-1307, USA. 38 Boston, MA 02110-1301, USA.
39 */ 39 */
40 40
41package org.gnunet.gns.messages; 41package org.gnunet.gns.messages;
diff --git a/src/main/java/org/gnunet/gns/package-info.java b/src/main/java/org/gnunet/gns/package-info.java
index be2afb8..432759d 100644
--- a/src/main/java/org/gnunet/gns/package-info.java
+++ b/src/main/java/org/gnunet/gns/package-info.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
21 21
diff --git a/src/main/java/org/gnunet/gns/records/ARecordData.java b/src/main/java/org/gnunet/gns/records/ARecordData.java
index 799d3a4..27776f3 100644
--- a/src/main/java/org/gnunet/gns/records/ARecordData.java
+++ b/src/main/java/org/gnunet/gns/records/ARecordData.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.gns.records; 21package org.gnunet.gns.records;
diff --git a/src/main/java/org/gnunet/gns/records/RecordData.java b/src/main/java/org/gnunet/gns/records/RecordData.java
index c5d591b..0bc6213 100644
--- a/src/main/java/org/gnunet/gns/records/RecordData.java
+++ b/src/main/java/org/gnunet/gns/records/RecordData.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.gns.records; 21package org.gnunet.gns.records;
diff --git a/src/main/java/org/gnunet/gns/records/UnknownRecordData.java b/src/main/java/org/gnunet/gns/records/UnknownRecordData.java
index 4f7e5e8..0e8359f 100644
--- a/src/main/java/org/gnunet/gns/records/UnknownRecordData.java
+++ b/src/main/java/org/gnunet/gns/records/UnknownRecordData.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.gns.records; 21package org.gnunet.gns.records;
diff --git a/src/main/java/org/gnunet/gns/records/package-info.java b/src/main/java/org/gnunet/gns/records/package-info.java
index 432faee..0085b2c 100644
--- a/src/main/java/org/gnunet/gns/records/package-info.java
+++ b/src/main/java/org/gnunet/gns/records/package-info.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
21 21