From cbf1c9276d452e7d09169d19c2aca4ff33e16619 Mon Sep 17 00:00:00 2001
From: Mrbytes <eguervos@msn.com>
Date: Sun, 07 Oct 2012 05:31:03 -0400
Subject: [PATCH] GitBlitWebApp_es.properties:       Up to date and other small corrections

---
 src/com/gitblit/utils/ArrayUtils.java |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/com/gitblit/utils/ArrayUtils.java b/src/com/gitblit/utils/ArrayUtils.java
index d0322b6..41d110a 100644
--- a/src/com/gitblit/utils/ArrayUtils.java
+++ b/src/com/gitblit/utils/ArrayUtils.java
@@ -29,7 +29,11 @@
 	public static boolean isEmpty(byte [] array) {
 		return array == null || array.length == 0;
 	}
-	
+
+	public static boolean isEmpty(char [] array) {
+		return array == null || array.length == 0;
+	}
+
 	public static boolean isEmpty(Object [] array) {
 		return array == null || array.length == 0;
 	}

--
Gitblit v1.9.1