From 82d3985f6fde5d530e7dcbd7925871e576f9e6f1 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Thu, 21 Jan 2016 17:16:50 +0100 Subject: [PATCH] Remove `I18n._()` This function was already deprecated and still triggers a java warning. Removing it silences that. --- arduino-core/src/processing/app/I18n.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/arduino-core/src/processing/app/I18n.java b/arduino-core/src/processing/app/I18n.java index 72b67a8ec..0ab961aa9 100644 --- a/arduino-core/src/processing/app/I18n.java +++ b/arduino-core/src/processing/app/I18n.java @@ -70,11 +70,6 @@ public class I18n { PROMPT_BROWSE = tr("Browse"); } - @Deprecated - public static String _(String s) { - return tr(s); - } - public static String tr(String s) { String res; try {