diff --git a/src/main/java/ic/doc/Example.java b/src/main/java/ic/doc/Example.java deleted file mode 100644 index 914c74f..0000000 --- a/src/main/java/ic/doc/Example.java +++ /dev/null @@ -1,26 +0,0 @@ -package ic.doc; - -import com.weather.Day; -import com.weather.Forecast; -import com.weather.Forecaster; -import com.weather.Region; - -public class Example { - - public static void main(String[] args) { - - // This is just an example of using the 3rd party API - delete this class before submission. - - Forecaster forecaster = new Forecaster(); - - Forecast londonForecast = forecaster.forecastFor(Region.LONDON, Day.MONDAY); - - System.out.println("London outlook: " + londonForecast.summary()); - System.out.println("London temperature: " + londonForecast.temperature()); - - Forecast edinburghForecast = forecaster.forecastFor(Region.EDINBURGH, Day.MONDAY); - - System.out.println("Edinburgh outlook: " + edinburghForecast.summary()); - System.out.println("Edinburgh temperature: " + edinburghForecast.temperature()); - } -} diff --git a/src/main/java/ic/doc/README.txt b/src/main/java/ic/doc/README.txt deleted file mode 100644 index f2127d4..0000000 --- a/src/main/java/ic/doc/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -Put your implementation code in this directory. -Delete this file before submission. diff --git a/src/test/java/ic/doc/README.txt b/src/test/java/ic/doc/README.txt deleted file mode 100644 index 6719ce3..0000000 --- a/src/test/java/ic/doc/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -Put your test code in this directory. -Delete this file before submission.