Skip to content

Commit

Permalink
remove unused loggers
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1914434 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pjfanning committed Dec 7, 2023
1 parent 6775bd2 commit ecc42ac
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ Licensed to the Apache Software Foundation (ASF) under one or more

package org.apache.poi.xssf.usermodel.helpers;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.poi.ss.formula.FormulaShifter;
import org.apache.poi.ss.usermodel.helpers.ColumnShifter;
import org.apache.poi.util.Beta;
Expand All @@ -33,7 +31,6 @@ Licensed to the Apache Software Foundation (ASF) under one or more
// {@link org.apache.poi.hssf.usermodel.helpers.HSSFColumnShifter}
@Beta
public final class XSSFColumnShifter extends ColumnShifter {
private static final Logger LOG = LogManager.getLogger(XSSFColumnShifter.class);

public XSSFColumnShifter(XSSFSheet sh) {
super(sh);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ Licensed to the Apache Software Foundation (ASF) under one or more

package org.apache.poi.xssf.usermodel.helpers;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.poi.ss.formula.FormulaShifter;
import org.apache.poi.ss.usermodel.helpers.RowShifter;
import org.apache.poi.util.Internal;
Expand All @@ -31,7 +29,6 @@ Licensed to the Apache Software Foundation (ASF) under one or more
// non-Javadoc: When possible, code should be implemented in the RowShifter abstract class to avoid duplication with
// {@link org.apache.poi.hssf.usermodel.helpers.HSSFRowShifter}
public final class XSSFRowShifter extends RowShifter {
private static final Logger LOG = LogManager.getLogger(XSSFRowShifter.class);

public XSSFRowShifter(XSSFSheet sh) {
super(sh);
Expand Down

0 comments on commit ecc42ac

Please sign in to comment.