Skip to content

Commit dc669af

Browse files
author
Johannes Simon
committed
- make seperators consistent (two spaces vs. one space)
1 parent b150b46 commit dc669af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/de/tudarmstadt/lt/wiki/hadoop/WikiLinkTokenizerMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void map(LongWritable key, Text value, Context context)
174174
bims.add(bim);
175175
}
176176
}
177-
String bimsText = StringUtils.join(bims, " ");
177+
String bimsText = StringUtils.join(bims, " ");
178178
context.write(new Text(linkTextLemma), new Text(target + "\t" + tokenizedText + "\t" + bimsText));
179179
} catch (RuntimeException | UIMAException e) {
180180
log.error("Can't process line: " + value.toString(), e);

0 commit comments

Comments
 (0)