We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627cdab commit a286ce4Copy full SHA for a286ce4
retail/interactive-tutorials/src/main/java/events/setup/UpdateUserEventsJson.java
@@ -29,10 +29,10 @@
29
public class UpdateUserEventsJson {
30
31
public static void main(String[] args) throws IOException {
32
- // TODO(developer): Replace these variables before running the sample.
33
String filePath = "src/main/resources/user_events.json";
34
-
+ String invalidFilePath = "src/main/resources/user_events_some_invalid.json";
35
updateEventsTimestamp(filePath);
+ updateEventsTimestamp(invalidFilePath);
36
}
37
38
public static void updateEventsTimestamp(String jsonFile) throws IOException {
0 commit comments