Update End of Term Assignment authored by Zorenböhmer Christina's avatar Zorenböhmer Christina
...@@ -31,7 +31,7 @@ Although it was not technically required by the assignment instructions, we want ...@@ -31,7 +31,7 @@ Although it was not technically required by the assignment instructions, we want
Specifically, we wanted to allow user input for these decisions: Specifically, we wanted to allow user input for these decisions:
<details><summary>**1.** Allow the user to **accept the default directory or set a new one.** <details><summary> 1. Allow the user to accept the default directory or set a new one.
</summary> </summary>
```java ```java
...@@ -84,7 +84,7 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc ...@@ -84,7 +84,7 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc
</details> </details>
<details><summary>**2.** Ask the user if they would like to **see additional information** on the WMS while the programme is running. <details><summary> 2. Ask the user if they would like to see additional information on the WMS while the programme is running.
</summary> </summary>
```java ```java
...@@ -122,7 +122,7 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc ...@@ -122,7 +122,7 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc
</details> </details>
<details><summary>**3.** Ask the user if they would like to **proceed to launch** Google Earth. <details><summary> 3. Ask the user if they would like to proceed to launch Google Earth.
</summary> </summary>
```java ```java
... ...
......