Skip to content

Commit

Permalink
Fixed Build Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
leeN committed Aug 23, 2024
1 parent 4fc47b0 commit 5a3c905
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
import java.math.BigInteger;
import java.math.MathContext;
import java.nio.charset.Charset;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.text.DateFormatSymbols;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
Expand Down Expand Up @@ -1157,10 +1155,7 @@ private IASString transformFromLineSeparator() {
}

if (null == lineSeparator) {
lineSeparator = AccessController
.doPrivileged((PrivilegedAction<IASString>) () -> {
return IASString.valueOfInternal(System.getProperty("line.separator")); //$NON-NLS-1$
});
lineSeparator = IASString.valueOfInternal(System.getProperty("line.separator")); //$NON-NLS-1$
}
return lineSeparator;
}
Expand Down

0 comments on commit 5a3c905

Please sign in to comment.