From 762a27413d4284a1059098918e77af3e49e33040 Mon Sep 17 00:00:00 2001 From: Victor Date: Mon, 6 Apr 2015 23:49:36 +0300 Subject: [PATCH] =?UTF-8?q?return=20=D1=82=D0=B5=D0=BF=D0=B5=D1=80=D1=8C?= =?UTF-8?q?=20=D0=BD=D0=B5=20=D0=B7=D0=B0=D0=BA=D1=80=D1=8B=D0=B2=D0=B0?= =?UTF-8?q?=D0=B5=D1=82=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5,=20=D1=82=D0=B0=D0=BA=20=D0=BA=D0=B0=D0=BA=20?= =?UTF-8?q?=D1=8D=D1=82=D0=B0=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D0=B0?= =?UTF-8?q?=20=D0=BC=D0=BE=D0=B6=D0=B5=D1=82=20=D1=81=D1=82=D0=BE=D1=8F?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B3=D0=B4=D0=B5=20=D1=83=D0=B3=D0=BE=D0=B4?= =?UTF-8?q?=D0=BD=D0=BE=20=D0=B8=20=D1=81=D0=BB=D1=83=D0=B6=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D0=B4=D0=BB=D1=8F=20=D0=BF=D0=B8=D1=82=D0=BE=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D1=81=D0=BA=D0=B8=D1=85=20=D1=86=D0=B5=D0=BB=D0=B5?= =?UTF-8?q?=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/annimon/everlastingsummer/Parser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/annimon/everlastingsummer/Parser.java b/src/com/annimon/everlastingsummer/Parser.java index 4145cfd..db12f48 100644 --- a/src/com/annimon/everlastingsummer/Parser.java +++ b/src/com/annimon/everlastingsummer/Parser.java @@ -79,7 +79,7 @@ public final class Parser { return true; } - if (match(token, TokenType.RETURN) || match(token, TokenType.EOF)) { + if (match(token, TokenType.EOF)) { ViewActivity.getInstance().finish(); return true; }