From aedd42e883c29ac36a40f86fa7a240c252c35083 Mon Sep 17 00:00:00 2001 From: guillermooo <guillermo.lopez@outlook.com> Date: Thu, 2 Apr 2015 06:41:14 +0200 Subject: [PATCH] review comments --- AUTHORS | 1 + lib/src/common.dart | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/AUTHORS b/AUTHORS index 0851ee5..8920aa8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,3 +8,4 @@ Seth Ladd <sethladd@google.com> Devon Carew <devoncarew@google.com> Sungguk Lim <limasdf@gmail.com> Kunal Deo <kunaldeo@gmail.com> +Guillermo López-Anglada <guillermo.lopez@outlook.com> diff --git a/lib/src/common.dart b/lib/src/common.dart index d6bd334..951f3cb 100644 --- a/lib/src/common.dart +++ b/lib/src/common.dart @@ -15,6 +15,10 @@ import '../stagehand.dart'; const int _RUNE_SPACE = 32; +@Deprecated('see decodeConcatenatedData') +List<TemplateFile> decodeConcanenatedData(List<String> data) => + decodeConcatenatedData(data); + List<TemplateFile> decodeConcatenatedData(List<String> data) { List<TemplateFile> results = []; -- GitLab