From eee70f10d328e7581b052c22dd2d6a3f1e0a07d3 Mon Sep 17 00:00:00 2001 From: Nicolau Manubens Date: Thu, 2 Mar 2017 15:30:44 +0100 Subject: [PATCH] Small fix in Utils. --- R/Utils.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/Utils.R b/R/Utils.R index c5f034c3..ec154153 100644 --- a/R/Utils.R +++ b/R/Utils.R @@ -239,8 +239,8 @@ } else { NA } - if (identical(nlons, length(lon)) && - identical(nlats, length(lat))) { + if ((nlons == length(lon)) && + (nlats == length(lat))) { TRUE } else { FALSE -- GitLab