From 035ea4f59287d8c3f3ccd6bae5e6a9306162a0df Mon Sep 17 00:00:00 2001
From: "(no author)" <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>
Date: Mon, 24 Jan 2005 11:20:53 +0000
Subject: This commit was manufactured by cvs2svn to create tag
'Build-SPSS-1_2_0_D04'.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build-SPSS-1_2_0_D04@254 d688527b-c9ab-4aba-bd8d-4036d912da1d
---
.../src/at/gv/egovernment/moa/util/BoolUtils.java | 24 ----------------------
1 file changed, 24 deletions(-)
delete mode 100644 common/src/at/gv/egovernment/moa/util/BoolUtils.java
(limited to 'common/src/at/gv/egovernment/moa/util/BoolUtils.java')
diff --git a/common/src/at/gv/egovernment/moa/util/BoolUtils.java b/common/src/at/gv/egovernment/moa/util/BoolUtils.java
deleted file mode 100644
index fcd39b4dd..000000000
--- a/common/src/at/gv/egovernment/moa/util/BoolUtils.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package at.gv.egovernment.moa.util;
-
-/**
- * Utility class for parsing XML schema boolean values.
- *
- * @author Patrick Peck
- * @version $Id$
- */
-public class BoolUtils {
-
- /**
- * Return the boolean value of an xsd:boolean
type of DOM
- * element/attribute.
- *
- * @param boolStr The value of the xsd:boolean
element/attribute.
- * @return true
, if boolStr
equals
- * "true"
or "1;"
. Otherwise,
- * false
is returned.
- */
- public static boolean valueOf(String boolStr) {
- return "true".equals(boolStr) || "1".equals(boolStr);
- }
-
-}
--
cgit v1.2.3