mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Prevent randomly selecting version of a card that doesn't have art available when there's another version where art is available
This commit is contained in:
@@ -1,138 +0,0 @@
|
||||
package forge.assets;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import forge.StaticData;
|
||||
import forge.card.CardDb;
|
||||
import forge.card.CardRules;
|
||||
import forge.card.CardSplitType;
|
||||
import forge.item.PaperCard;
|
||||
import forge.model.FModel;
|
||||
import forge.properties.ForgeConstants;
|
||||
import forge.properties.ForgePreferences.FPref;
|
||||
import forge.util.Base64Coder;
|
||||
|
||||
public class ImageUtil {
|
||||
public static float getNearestHQSize(float baseSize, float actualSize) {
|
||||
//get nearest power of actualSize to baseSize so that the image renders good
|
||||
return (float)Math.round(actualSize) * (float)Math.pow(2, (double)Math.round(Math.log((double)(baseSize / actualSize)) / Math.log(2)));
|
||||
}
|
||||
|
||||
public static PaperCard getPaperCardFromImageKey(String key) {
|
||||
if ( key == null ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PaperCard cp = StaticData.instance().getCommonCards().getCard(key);
|
||||
if (cp == null) {
|
||||
cp = StaticData.instance().getVariantCards().getCard(key);
|
||||
}
|
||||
return cp;
|
||||
}
|
||||
|
||||
public static String getImageRelativePath(PaperCard cp, boolean backFace, boolean includeSet, boolean isDownloadUrl) {
|
||||
final String nameToUse = cp == null ? null : getNameToUse(cp, backFace);
|
||||
if ( null == nameToUse )
|
||||
return null;
|
||||
|
||||
StringBuilder s = new StringBuilder();
|
||||
|
||||
CardRules card = cp.getRules();
|
||||
String edition = cp.getEdition();
|
||||
s.append(toMWSFilename(nameToUse));
|
||||
|
||||
final int cntPictures;
|
||||
final boolean hasManyPictures;
|
||||
final CardDb db = !card.isVariant() ? FModel.getMagicDb().getCommonCards() : FModel.getMagicDb().getVariantCards();
|
||||
if (includeSet) {
|
||||
cntPictures = db.getPrintCount(card.getName(), edition);
|
||||
hasManyPictures = cntPictures > 1;
|
||||
} else {
|
||||
// without set number of pictures equals number of urls provided in Svar:Picture
|
||||
String urls = card.getPictureUrl(backFace);
|
||||
cntPictures = StringUtils.countMatches(urls, "\\") + 1;
|
||||
|
||||
// raise the art index limit to the maximum of the sets this card was printed in
|
||||
int maxCntPictures = db.getMaxPrintCount(card.getName());
|
||||
hasManyPictures = maxCntPictures > 1;
|
||||
}
|
||||
|
||||
int artIdx = cp.getArtIndex() - 1;
|
||||
if (hasManyPictures) {
|
||||
if ( cntPictures <= artIdx ) // prevent overflow
|
||||
artIdx = cntPictures == 0 ? 0 : artIdx % cntPictures;
|
||||
s.append(artIdx + 1);
|
||||
}
|
||||
|
||||
// for whatever reason, MWS-named plane cards don't have the ".full" infix
|
||||
if (!card.getType().isPlane() && !card.getType().isPhenomenon()) {
|
||||
s.append(".full");
|
||||
}
|
||||
|
||||
final String fname;
|
||||
if (isDownloadUrl) {
|
||||
s.append(".jpg");
|
||||
fname = Base64Coder.encodeString(s.toString(), true);
|
||||
} else {
|
||||
fname = s.toString();
|
||||
}
|
||||
|
||||
if (includeSet) {
|
||||
String editionAliased = isDownloadUrl ? FModel.getMagicDb().getEditions().getCode2ByCode(edition) : getSetFolder(edition);
|
||||
return String.format("%s/%s", editionAliased, fname);
|
||||
} else {
|
||||
return fname;
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean mayEnlarge() {
|
||||
return FModel.getPreferences().getPrefBoolean(FPref.UI_SCALE_LARGER);
|
||||
}
|
||||
|
||||
public static boolean hasBackFacePicture(PaperCard cp) {
|
||||
CardSplitType cst = cp.getRules().getSplitType();
|
||||
return cst == CardSplitType.Transform || cst == CardSplitType.Flip;
|
||||
}
|
||||
|
||||
public static String getSetFolder(String edition) {
|
||||
return !ForgeConstants.CACHE_CARD_PICS_SUBDIR.containsKey(edition)
|
||||
? FModel.getMagicDb().getEditions().getCode2ByCode(edition) // by default 2-letter codes from MWS are used
|
||||
: ForgeConstants.CACHE_CARD_PICS_SUBDIR.get(edition); // may use custom paths though
|
||||
}
|
||||
|
||||
public static String getNameToUse(PaperCard cp, boolean backFace) {
|
||||
final CardRules card = cp.getRules();
|
||||
if (backFace ) {
|
||||
if ( hasBackFacePicture(cp) )
|
||||
return card.getOtherPart().getName();
|
||||
else
|
||||
return null;
|
||||
} else if(CardSplitType.Split == cp.getRules().getSplitType()) {
|
||||
return card.getMainPart().getName() + card.getOtherPart().getName();
|
||||
} else {
|
||||
return cp.getName();
|
||||
}
|
||||
}
|
||||
|
||||
public static String getImageKey(PaperCard cp, boolean backFace, boolean includeSet) {
|
||||
return getImageRelativePath(cp, backFace, includeSet, false);
|
||||
}
|
||||
|
||||
public static String getDownloadUrl(PaperCard cp, boolean backFace) {
|
||||
return getImageRelativePath(cp, backFace, true, true);
|
||||
}
|
||||
|
||||
public static String toMWSFilename(String in) {
|
||||
final StringBuffer out = new StringBuffer();
|
||||
char c;
|
||||
for (int i = 0; i < in.length(); i++) {
|
||||
c = in.charAt(i);
|
||||
if ((c == '"') || (c == '/') || (c == ':') || (c == '?')) {
|
||||
out.append("");
|
||||
} else {
|
||||
out.append(c);
|
||||
}
|
||||
}
|
||||
return out.toString();
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
package forge.deck.io;
|
||||
|
||||
import forge.assets.ImageUtil;
|
||||
import forge.deck.Deck;
|
||||
import forge.item.PaperCard;
|
||||
import forge.properties.ForgeConstants;
|
||||
import forge.util.ImageUtil;
|
||||
import freemarker.template.Configuration;
|
||||
import freemarker.template.DefaultObjectWrapper;
|
||||
import freemarker.template.Template;
|
||||
|
||||
@@ -17,11 +17,11 @@
|
||||
*/
|
||||
package forge.download;
|
||||
|
||||
import forge.assets.ImageUtil;
|
||||
import forge.card.CardRules;
|
||||
import forge.item.PaperCard;
|
||||
import forge.model.FModel;
|
||||
import forge.properties.ForgeConstants;
|
||||
import forge.util.ImageUtil;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
|
||||
@@ -19,11 +19,11 @@ package forge.download;
|
||||
|
||||
import com.google.common.collect.Iterables;
|
||||
|
||||
import forge.assets.ImageUtil;
|
||||
import forge.card.CardEdition;
|
||||
import forge.item.PaperCard;
|
||||
import forge.model.FModel;
|
||||
import forge.properties.ForgeConstants;
|
||||
import forge.util.ImageUtil;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
|
||||
@@ -87,7 +87,8 @@ public class FModel {
|
||||
private static GameFormat.Collection formats;
|
||||
|
||||
public static void initialize(final IProgressBar progressBar) {
|
||||
ImageKeys.initializeDirs(ForgeConstants.CACHE_CARD_PICS_DIR,
|
||||
ImageKeys.initializeDirs(
|
||||
ForgeConstants.CACHE_CARD_PICS_DIR, ForgeConstants.CACHE_CARD_PICS_SUBDIR,
|
||||
ForgeConstants.CACHE_TOKEN_PICS_DIR, ForgeConstants.CACHE_ICON_PICS_DIR,
|
||||
ForgeConstants.CACHE_BOOSTER_PICS_DIR, ForgeConstants.CACHE_FATPACK_PICS_DIR,
|
||||
ForgeConstants.CACHE_BOOSTERBOX_PICS_DIR, ForgeConstants.CACHE_PRECON_PICS_DIR,
|
||||
|
||||
@@ -1,372 +0,0 @@
|
||||
/*
|
||||
* Forge: Play Magic: the Gathering.
|
||||
* Copyright (C) 2011 Forge Team
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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 General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
// www.source-code.biz, www.inventec.ch/chdh
|
||||
//
|
||||
// This module is multi-licensed and may be used under the terms
|
||||
// of any of the following licenses:
|
||||
//
|
||||
// EPL, Eclipse Public License, V1.0 or later, http://www.eclipse.org/legal
|
||||
// LGPL, GNU Lesser General Public License, V2.1 or later, http://www.gnu.org/licenses/lgpl.html
|
||||
// GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html
|
||||
// AL, Apache License, V2.0 or later, http://www.apache.org/licenses
|
||||
// BSD, BSD License, http://www.opensource.org/licenses/bsd-license.php
|
||||
//
|
||||
// Please contact the author if you need another license.
|
||||
// This module is provided "as is", without warranties of any kind.
|
||||
|
||||
package forge.util;
|
||||
|
||||
/**
|
||||
* A Base64 encoder/decoder.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* This class is used to encode and decode data in Base64 format as described in
|
||||
* RFC 1521.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* Project home page: <a
|
||||
* href="http://www.source-code.biz/base64coder/java/">www.
|
||||
* source-code.biz/base64coder/java</a><br>
|
||||
* Author: Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland<br>
|
||||
* Multi-licensed: EPL / LGPL / GPL / AL / BSD.
|
||||
*
|
||||
* @author Forge
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class Base64Coder {
|
||||
|
||||
// The line separator string of the operating system.
|
||||
/**
|
||||
* Constant.
|
||||
* <code>systemLineSeparator="System.getProperty(line.separator)"</code>
|
||||
*/
|
||||
private static final String SYSTEM_LINE_SEPARATOR = System.getProperty("line.separator");
|
||||
|
||||
// Mapping table from 6-bit nibbles to Base64 characters.
|
||||
/** Constant <code>map1=new char[64]</code>. */
|
||||
private static char[] map1 = new char[64];
|
||||
|
||||
static {
|
||||
int i = 0;
|
||||
for (char c = 'A'; c <= 'Z'; c++) {
|
||||
Base64Coder.map1[i++] = c;
|
||||
}
|
||||
for (char c = 'a'; c <= 'z'; c++) {
|
||||
Base64Coder.map1[i++] = c;
|
||||
}
|
||||
for (char c = '0'; c <= '9'; c++) {
|
||||
Base64Coder.map1[i++] = c;
|
||||
}
|
||||
Base64Coder.map1[i++] = '+';
|
||||
Base64Coder.map1[i++] = '/';
|
||||
}
|
||||
|
||||
// Mapping table from Base64 characters to 6-bit nibbles.
|
||||
/** Constant <code>map2=new byte[128]</code>. */
|
||||
private static byte[] map2 = new byte[128];
|
||||
|
||||
static {
|
||||
for (int i = 0; i < Base64Coder.map2.length; i++) {
|
||||
Base64Coder.map2[i] = -1;
|
||||
}
|
||||
for (int i = 0; i < 64; i++) {
|
||||
Base64Coder.map2[Base64Coder.map1[i]] = (byte) i;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a string into Base64 format. No blanks or line breaks are
|
||||
* inserted.
|
||||
*
|
||||
* @param s
|
||||
* A String to be encoded.
|
||||
* @return A String containing the Base64 encoded data.
|
||||
*/
|
||||
public static String encodeString(final String s) {
|
||||
return new String(Base64Coder.encode(s.getBytes()));
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* encodeString.
|
||||
* </p>
|
||||
*
|
||||
* @param s
|
||||
* a {@link java.lang.String} object.
|
||||
* @param noPad
|
||||
* a boolean.
|
||||
* @return a {@link java.lang.String} object.
|
||||
*/
|
||||
public static String encodeString(final String s, final boolean noPad) {
|
||||
String t = new String(Base64Coder.encode(s.getBytes()));
|
||||
|
||||
if (noPad) {
|
||||
t = t.replace("=", "");
|
||||
}
|
||||
|
||||
return t;
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a byte array into Base 64 format and breaks the output into lines
|
||||
* of 76 characters. This method is compatible with
|
||||
* <code>sun.misc.BASE64Encoder.encodeBuffer(byte[])</code>.
|
||||
*
|
||||
* @param in
|
||||
* An array containing the data bytes to be encoded.
|
||||
* @return A String containing the Base64 encoded data, broken into lines.
|
||||
*/
|
||||
public static String encodeLines(final byte[] in) {
|
||||
return Base64Coder.encodeLines(in, 0, in.length, 76, Base64Coder.SYSTEM_LINE_SEPARATOR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a byte array into Base 64 format and breaks the output into
|
||||
* lines.
|
||||
*
|
||||
* @param in
|
||||
* An array containing the data bytes to be encoded.
|
||||
* @param iOff
|
||||
* Offset of the first byte in <code>in</code> to be processed.
|
||||
* @param iLen
|
||||
* Number of bytes to be processed in <code>in</code>, starting
|
||||
* at <code>iOff</code>.
|
||||
* @param lineLen
|
||||
* Line length for the output data. Should be a multiple of 4.
|
||||
* @param lineSeparator
|
||||
* The line separator to be used to separate the output lines.
|
||||
* @return A String containing the Base64 encoded data, broken into lines.
|
||||
*/
|
||||
public static String encodeLines(final byte[] in, final int iOff, final int iLen, final int lineLen,
|
||||
final String lineSeparator) {
|
||||
final int blockLen = (lineLen * 3) / 4;
|
||||
if (blockLen <= 0) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
final int lines = ((iLen + blockLen) - 1) / blockLen;
|
||||
final int bufLen = (((iLen + 2) / 3) * 4) + (lines * lineSeparator.length());
|
||||
final StringBuilder buf = new StringBuilder(bufLen);
|
||||
int ip = 0;
|
||||
while (ip < iLen) {
|
||||
final int l = Math.min(iLen - ip, blockLen);
|
||||
buf.append(Base64Coder.encode(in, iOff + ip, l));
|
||||
buf.append(lineSeparator);
|
||||
ip += l;
|
||||
}
|
||||
return buf.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a byte array into Base64 format. No blanks or line breaks are
|
||||
* inserted in the output.
|
||||
*
|
||||
* @param in
|
||||
* An array containing the data bytes to be encoded.
|
||||
* @return A character array containing the Base64 encoded data.
|
||||
*/
|
||||
public static char[] encode(final byte[] in) {
|
||||
return Base64Coder.encode(in, 0, in.length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a byte array into Base64 format. No blanks or line breaks are
|
||||
* inserted in the output.
|
||||
*
|
||||
* @param in
|
||||
* An array containing the data bytes to be encoded.
|
||||
* @param iLen
|
||||
* Number of bytes to process in <code>in</code>.
|
||||
* @return A character array containing the Base64 encoded data.
|
||||
*/
|
||||
public static char[] encode(final byte[] in, final int iLen) {
|
||||
return Base64Coder.encode(in, 0, iLen);
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a byte array into Base64 format. No blanks or line breaks are
|
||||
* inserted in the output.
|
||||
*
|
||||
* @param in
|
||||
* An array containing the data bytes to be encoded.
|
||||
* @param iOff
|
||||
* Offset of the first byte in <code>in</code> to be processed.
|
||||
* @param iLen
|
||||
* Number of bytes to process in <code>in</code>, starting at
|
||||
* <code>iOff</code>.
|
||||
* @return A character array containing the Base64 encoded data.
|
||||
*/
|
||||
public static char[] encode(final byte[] in, final int iOff, final int iLen) {
|
||||
final int oDataLen = ((iLen * 4) + 2) / 3; // output length without
|
||||
// padding
|
||||
final int oLen = ((iLen + 2) / 3) * 4; // output length including
|
||||
// padding
|
||||
final char[] out = new char[oLen];
|
||||
int ip = iOff;
|
||||
final int iEnd = iOff + iLen;
|
||||
int op = 0;
|
||||
while (ip < iEnd) {
|
||||
final int i0 = in[ip++] & 0xff;
|
||||
final int i1 = ip < iEnd ? in[ip++] & 0xff : 0;
|
||||
final int i2 = ip < iEnd ? in[ip++] & 0xff : 0;
|
||||
final int o0 = i0 >>> 2;
|
||||
final int o1 = ((i0 & 3) << 4) | (i1 >>> 4);
|
||||
final int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
|
||||
final int o3 = i2 & 0x3F;
|
||||
out[op++] = Base64Coder.map1[o0];
|
||||
out[op++] = Base64Coder.map1[o1];
|
||||
out[op] = op < oDataLen ? Base64Coder.map1[o2] : '=';
|
||||
op++;
|
||||
out[op] = op < oDataLen ? Base64Coder.map1[o3] : '=';
|
||||
op++;
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a string from Base64 format. No blanks or line breaks are allowed
|
||||
* within the Base64 encoded input data.
|
||||
*
|
||||
* @param s
|
||||
* A Base64 String to be decoded.
|
||||
* @return A String containing the decoded data.
|
||||
*
|
||||
* If the input is not valid Base64 encoded data.
|
||||
*/
|
||||
public static String decodeString(final String s) {
|
||||
return new String(Base64Coder.decode(s));
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a byte array from Base64 format and ignores line separators, tabs
|
||||
* and blanks. CR, LF, Tab and Space characters are ignored in the input
|
||||
* data. This method is compatible with
|
||||
* <code>sun.misc.BASE64Decoder.decodeBuffer(String)</code>.
|
||||
*
|
||||
* @param s
|
||||
* A Base64 String to be decoded.
|
||||
* @return An array containing the decoded data bytes.
|
||||
*
|
||||
* If the input is not valid Base64 encoded data.
|
||||
*/
|
||||
public static byte[] decodeLines(final String s) {
|
||||
final char[] buf = new char[s.length()];
|
||||
int p = 0;
|
||||
for (int ip = 0; ip < s.length(); ip++) {
|
||||
final char c = s.charAt(ip);
|
||||
if ((c != ' ') && (c != '\r') && (c != '\n') && (c != '\t')) {
|
||||
buf[p++] = c;
|
||||
}
|
||||
}
|
||||
return Base64Coder.decode(buf, 0, p);
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a byte array from Base64 format. No blanks or line breaks are
|
||||
* allowed within the Base64 encoded input data.
|
||||
*
|
||||
* @param s
|
||||
* A Base64 String to be decoded.
|
||||
* @return An array containing the decoded data bytes.
|
||||
*
|
||||
* If the input is not valid Base64 encoded data.
|
||||
*/
|
||||
public static byte[] decode(final String s) {
|
||||
return Base64Coder.decode(s.toCharArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a byte array from Base64 format. No blanks or line breaks are
|
||||
* allowed within the Base64 encoded input data.
|
||||
*
|
||||
* @param in
|
||||
* A character array containing the Base64 encoded data.
|
||||
* @return An array containing the decoded data bytes.
|
||||
*
|
||||
* If the input is not valid Base64 encoded data.
|
||||
*/
|
||||
public static byte[] decode(final char[] in) {
|
||||
return Base64Coder.decode(in, 0, in.length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Decodes a byte array from Base64 format. No blanks or line breaks are
|
||||
* allowed within the Base64 encoded input data.
|
||||
*
|
||||
* @param in
|
||||
* A character array containing the Base64 encoded data.
|
||||
* @param iOff
|
||||
* Offset of the first character in <code>in</code> to be
|
||||
* processed.
|
||||
* @param iLen
|
||||
* Number of characters to process in <code>in</code>, starting
|
||||
* at <code>iOff</code>.
|
||||
* @return An array containing the decoded data bytes.
|
||||
*
|
||||
* If the input is not valid Base64 encoded data.
|
||||
*/
|
||||
public static byte[] decode(final char[] in, final int iOff, int iLen) {
|
||||
if ((iLen % 4) != 0) {
|
||||
throw new IllegalArgumentException("Length of Base64 encoded input string is not a multiple of 4.");
|
||||
}
|
||||
while ((iLen > 0) && (in[(iOff + iLen) - 1] == '=')) {
|
||||
iLen--;
|
||||
}
|
||||
final int oLen = (iLen * 3) / 4;
|
||||
final byte[] out = new byte[oLen];
|
||||
int ip = iOff;
|
||||
final int iEnd = iOff + iLen;
|
||||
int op = 0;
|
||||
while (ip < iEnd) {
|
||||
final int i0 = in[ip++];
|
||||
final int i1 = in[ip++];
|
||||
final int i2 = ip < iEnd ? in[ip++] : 'A';
|
||||
final int i3 = ip < iEnd ? in[ip++] : 'A';
|
||||
if ((i0 > 127) || (i1 > 127) || (i2 > 127) || (i3 > 127)) {
|
||||
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
|
||||
}
|
||||
final int b0 = Base64Coder.map2[i0];
|
||||
final int b1 = Base64Coder.map2[i1];
|
||||
final int b2 = Base64Coder.map2[i2];
|
||||
final int b3 = Base64Coder.map2[i3];
|
||||
if ((b0 < 0) || (b1 < 0) || (b2 < 0) || (b3 < 0)) {
|
||||
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
|
||||
}
|
||||
final int o0 = (b0 << 2) | (b1 >>> 4);
|
||||
final int o1 = ((b1 & 0xf) << 4) | (b2 >>> 2);
|
||||
final int o2 = ((b2 & 3) << 6) | b3;
|
||||
out[op++] = (byte) o0;
|
||||
if (op < oLen) {
|
||||
out[op++] = (byte) o1;
|
||||
}
|
||||
if (op < oLen) {
|
||||
out[op++] = (byte) o2;
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
// Dummy constructor.
|
||||
/**
|
||||
* <p>
|
||||
* Constructor for Base64Coder.
|
||||
* </p>
|
||||
*/
|
||||
private Base64Coder() {
|
||||
}
|
||||
|
||||
} // end class Base64Coder
|
||||
Reference in New Issue
Block a user