remove recently added volatile markers due to Sonarcloud warnings

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1907578 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2023-02-11 11:26:03 +00:00
parent bdd39251ef
commit dc91cdbaaa
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public enum ClassIDPredefined {
}
private final String externalForm;
private volatile ClassID classId;
private ClassID classId;
private final String fileExtension;
private final String contentType;

View File

@ -44,7 +44,7 @@ public class CellDateFormatter extends CellFormatter {
private static final int NUM_MILLISECONDS_IN_DAY = 1000 * 60 * 60 * 24;
private static volatile CellDateFormatter SIMPLE_DATE_FORMATTER;
private static CellDateFormatter SIMPLE_DATE_FORMATTER;
class DatePartHandler implements CellFormatPart.PartHandler {
private int mStart = -1;