Skip to content

Commit

Permalink
fix: remove unused logger
Browse files Browse the repository at this point in the history
  • Loading branch information
yurem committed May 4, 2022
1 parent 5b0ed3d commit 29c3035
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,18 @@

package org.gluu.oxauth.model.util;

import org.apache.commons.codec.binary.Base64;
import org.apache.log4j.Logger;

import java.io.UnsupportedEncodingException;
import java.math.BigInteger;

import org.apache.commons.codec.binary.Base64;

/**
* @author Javier Rojas Blum
* @author Sergey Manoylo
* @version December 17, 2021
*/
public class Base64Util {

private static final Logger log = Logger.getLogger(Base64Util.class);

public static String base64urlencode(byte[] arg) {
String s = Base64.encodeBase64String(arg); // Standard base64 encoder
s = s.split("=")[0]; // Remove any trailing '='s
Expand Down

0 comments on commit 29c3035

Please sign in to comment.