From 10c9eeaea0775f05a9b82be9df9008ad419bc2a1 Mon Sep 17 00:00:00 2001 From: Marco Heiming Date: Mon, 31 Jan 2022 21:07:52 +0100 Subject: [PATCH] Fix warnings --- apps/circlesclock/app.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/circlesclock/app.js b/apps/circlesclock/app.js index 8b58e0e28..3c8cc9f91 100644 --- a/apps/circlesclock/app.js +++ b/apps/circlesclock/app.js @@ -578,7 +578,6 @@ function getWeatherIconByCode(code) { default: return weatherRainy; } - break; case 6: return weatherSnowy; case 7: @@ -594,11 +593,9 @@ function getWeatherIconByCode(code) { default: return weatherCloudy; } - break; default: return undefined; } - return undefined; }