OSDN Git Service

UTF8
[evermemo/source.git] / workspace / EverMemo / src / com / yuji / em / base64 / Shared.java
index f3944b8..c152393 100644 (file)
@@ -1,33 +1,33 @@
-/*\r
- * Java Base64 - A pure Java library for reading and writing Base64\r
- *               encoded streams.\r
- * \r
- * Copyright (C) 2007-2009 Carlo Pelliccia (www.sauronsoftware.it)\r
- * \r
- * This program is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU Lesser General Public License version\r
- * 2.1, as published by the Free Software Foundation.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU Lesser General Public\r
- * License version 2.1 along with this program.\r
- * If not, see <http://www.gnu.org/licenses/>.\r
- */\r
-package com.yuji.em.base64;\r
-\r
-/**\r
- * Package related utilities.\r
- * \r
- * @author Carlo Pelliccia\r
- */\r
-class Shared {\r
-\r
-       static String chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";\r
-\r
-       static char pad = '=';\r
-\r
+/*
+ * Java Base64 - A pure Java library for reading and writing Base64
+ *               encoded streams.
+ * 
+ * Copyright (C) 2007-2009 Carlo Pelliccia (www.sauronsoftware.it)
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version
+ * 2.1, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License version 2.1 along with this program.
+ * If not, see <http://www.gnu.org/licenses/>.
+ */
+package com.yuji.em.base64;
+
+/**
+ * Package related utilities.
+ * 
+ * @author Carlo Pelliccia
+ */
+class Shared {
+
+       static String chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+
+       static char pad = '=';
+
 }
\ No newline at end of file