@@ -79,7 +79,7 @@ protected void serialize(final Forum forum ) {
79
79
80
80
for (Integer tag : forum .tags ()) {
81
81
String topic = Dictionaries .tags .getName (tag );
82
- Turtle .createTripleSPO (result , forumPrefix , SNVOC .hasTag , DBP .fullPrefixed (topic ));
82
+ Turtle .createTripleSPO (result , forumPrefix , SNVOC .hasTag , SNTAG .fullPrefixed (topic ));
83
83
}
84
84
writers [FileNames .SOCIAL_NETWORK .ordinal ()].write (result .toString ());
85
85
}
@@ -156,7 +156,7 @@ protected void serialize(final Comment comment ) {
156
156
157
157
for ( Integer tag : comment .tags ()) {
158
158
String topic = Dictionaries .tags .getName (tag );
159
- Turtle .createTripleSPO (result , prefix , SNVOC .hasTag , DBP .fullPrefixed (topic ));
159
+ Turtle .createTripleSPO (result , prefix , SNVOC .hasTag , SNTAG .fullPrefixed (topic ));
160
160
}
161
161
writers [FileNames .SOCIAL_NETWORK .ordinal ()].write (result .toString ());
162
162
}
@@ -185,7 +185,7 @@ protected void serialize(final Photo photo ) {
185
185
186
186
for ( Integer tag : photo .tags ()) {
187
187
String topic = Dictionaries .tags .getName (tag );
188
- Turtle .createTripleSPO (result , prefix , SNVOC .hasTag , DBP .fullPrefixed (topic ));
188
+ Turtle .createTripleSPO (result , prefix , SNVOC .hasTag , SNTAG .fullPrefixed (topic ));
189
189
}
190
190
writers [FileNames .SOCIAL_NETWORK .ordinal ()].write (result .toString ());
191
191
}
0 commit comments