Skip to content

Commit f456664

Browse files
committed
SiliconFix.APPLY_FIX is now mutable, which was the intention in 4.1.0.
1 parent e08573d commit f456664

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# DurianSwt releases
22

33
## [Unreleased]
4+
### Fixed
5+
- `SiliconFix.APPLY_FIX` is now mutable, which was the intention in `4.1.0`.
46

57
## [4.1.0] - 2022-10-31
68
### Added

durian-swt/src/main/java/com/diffplug/common/swt/SiliconFix.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=575696
2929
*/
3030
public class SiliconFix {
31-
public static final boolean APPLY_FIX = OS.getRunning().isMac() && Arch.getRunning() == Arch.arm64;
31+
public static boolean APPLY_FIX = OS.getRunning().isMac() && Arch.getRunning() == Arch.arm64;
3232

3333
public static void fix(Table table) {
3434
if (APPLY_FIX) {

0 commit comments

Comments
 (0)