From 1aef75ed95f88d674e48cd7c3690097fa56a56dd Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 17 Dec 2023 21:52:30 -0500 Subject: [PATCH] Run lint --- .../main/java/org/photonvision/mrcal/MrCal.java | 1 - .../java/org/photonvision/mrcal/MrCalTest.java | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/photon-core/src/main/java/org/photonvision/mrcal/MrCal.java b/photon-core/src/main/java/org/photonvision/mrcal/MrCal.java index 55202e825b..5a61e621c3 100644 --- a/photon-core/src/main/java/org/photonvision/mrcal/MrCal.java +++ b/photon-core/src/main/java/org/photonvision/mrcal/MrCal.java @@ -24,7 +24,6 @@ import org.photonvision.jni.PhotonJniCommon; public class MrCal extends PhotonJniCommon { - public static synchronized void forceLoad() throws IOException { // Force load opencv TestUtils.loadLibraries(); diff --git a/photon-core/src/test/java/org/photonvision/mrcal/MrCalTest.java b/photon-core/src/test/java/org/photonvision/mrcal/MrCalTest.java index 3fcb2796e7..6ecacec672 100644 --- a/photon-core/src/test/java/org/photonvision/mrcal/MrCalTest.java +++ b/photon-core/src/test/java/org/photonvision/mrcal/MrCalTest.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) Photon Vision. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package org.photonvision.mrcal; import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;