From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Thu, 10 Dec 2020 18:00:07 +0100
Subject: Ignore Apple specific check from apple lib

Forwarded: not-needed

The check is using the apple Java library which isn't packaged yet (and
probably never will) in Debian. Ignore the one and only function in
Base.java which is simply checking if a MacOS specific menu is
available.
---
 app/src/processing/app/Base.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java
index 411db1a..3e1e7b6 100644
--- a/app/src/processing/app/Base.java
+++ b/app/src/processing/app/Base.java
@@ -145,10 +145,10 @@ public class Base {
     }
   }
 
-  @SuppressWarnings("deprecation")
-  public static boolean isMacOsAboutMenuItemPresent() {
-    return com.apple.eawt.Application.getApplication().isAboutMenuItemPresent();
-  }
+//  @SuppressWarnings("deprecation")
+//  public static boolean isMacOsAboutMenuItemPresent() {
+//    return com.apple.eawt.Application.getApplication().isAboutMenuItemPresent();
+//  }
 
   static public void initLogger() {
     Handler consoleHandler = new ConsoleLogger();
