From 9e56ba2365b4654f42c675f830415dd8f7f39a2a Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Sun, 17 Oct 2021 09:21:55 -0700 Subject: [PATCH] java compatibility with jdk 1.8, not 1.6 --- examples/DisShooting/nbproject/build-impl.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/DisShooting/nbproject/build-impl.xml b/examples/DisShooting/nbproject/build-impl.xml index 438cefda9d..94aaf4bbc8 100644 --- a/examples/DisShooting/nbproject/build-impl.xml +++ b/examples/DisShooting/nbproject/build-impl.xml @@ -46,8 +46,8 @@ is divided into following sections: <property file="${user.properties.file}"/> <!-- The two properties below are usually overridden --> <!-- by the active platform. Just a fallback. --> - <property name="default.javac.source" value="1.6"/> - <property name="default.javac.target" value="1.6"/> + <property name="default.javac.source" value="1.8"/> + <property name="default.javac.target" value="1.8"/> </target> <target depends="-pre-init,-init-private,-init-user" name="-init-project"> <property file="nbproject/configs/${config}.properties"/> -- GitLab