From 416d4caaedb700f18c7c6e7026886e06ebfc552b Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Mon, 18 Nov 2024 16:37:35 +0000 Subject: [PATCH] Delete template files Co-Authored-By: os222 --- src/main/java/ic/doc/Example.java | 26 -------------------------- src/main/java/ic/doc/README.txt | 2 -- src/test/java/ic/doc/README.txt | 2 -- 3 files changed, 30 deletions(-) delete mode 100644 src/main/java/ic/doc/Example.java delete mode 100644 src/main/java/ic/doc/README.txt delete mode 100644 src/test/java/ic/doc/README.txt 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.