From 265ffb02b8e13d6d11e8427052232ce627f3ed71 Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Sat, 15 Jul 2017 14:04:34 +0200 Subject: [PATCH] pointless tweaks --- modules/i18n/src/main/JsQuantity.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/i18n/src/main/JsQuantity.scala b/modules/i18n/src/main/JsQuantity.scala index f98d8e2d9b..1b1239049f 100644 --- a/modules/i18n/src/main/JsQuantity.scala +++ b/modules/i18n/src/main/JsQuantity.scala @@ -7,7 +7,7 @@ object JsQuantity { case "fr" | "ff" | "kab" => """ // french - return (c < 2) ? 'one' : 'other'; + return c < 2 ? 'one' : 'other'; """ case "cs" | "sk" => """ @@ -122,7 +122,7 @@ object JsQuantity { """ case _ => """ - return (c == 1) ? 'one' : 'other'; + return c == 1 ? 'one' : 'other'; """ }