We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SiliconFix.APPLY_FIX
4.1.0
1 parent e08573d commit f456664Copy full SHA for f456664
CHANGES.md
@@ -1,6 +1,8 @@
1
# DurianSwt releases
2
3
## [Unreleased]
4
+### Fixed
5
+- `SiliconFix.APPLY_FIX` is now mutable, which was the intention in `4.1.0`.
6
7
## [4.1.0] - 2022-10-31
8
### Added
durian-swt/src/main/java/com/diffplug/common/swt/SiliconFix.java
@@ -28,7 +28,7 @@
28
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=575696
29
*/
30
public class SiliconFix {
31
- public static final boolean APPLY_FIX = OS.getRunning().isMac() && Arch.getRunning() == Arch.arm64;
+ public static boolean APPLY_FIX = OS.getRunning().isMac() && Arch.getRunning() == Arch.arm64;
32
33
public static void fix(Table table) {
34
if (APPLY_FIX) {
0 commit comments