We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a3f6d6 commit 8208d7eCopy full SHA for 8208d7e
language/analysis/src/main/java/com/google/cloud/language/samples/Analyze.java
@@ -148,7 +148,7 @@ public static void analyzeEntitiesFile(String gcsUri) throws Exception {
148
149
// Print the response
150
for (Entity entity : response.getEntitiesList()) {
151
- System.out.printf("Entity: %s", entity.getName());
+ System.out.printf("Entity: %s\n", entity.getName());
152
System.out.printf("Salience: %.3f\n", entity.getSalience());
153
System.out.println("Metadata: ");
154
for (Map.Entry<String, String> entry : entity.getMetadataMap().entrySet()) {
0 commit comments