From a7882ab201fce841c3b5aa0a6937d7f200616f2c Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Sat, 12 Mar 2022 13:59:54 +0100 Subject: [PATCH] Add missing copyright header to AppOptions.java --- .../java/de/jotoho/waituntil/AppOptions.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/java/de/jotoho/waituntil/AppOptions.java b/src/main/java/de/jotoho/waituntil/AppOptions.java index 4e2201f..1e1d32f 100644 --- a/src/main/java/de/jotoho/waituntil/AppOptions.java +++ b/src/main/java/de/jotoho/waituntil/AppOptions.java @@ -1,5 +1,23 @@ package de.jotoho.waituntil; +/* + waituntil - a tool for delaying command execution until the specified time + Copyright (C) 2022 Jonas Tobias Hopusch + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import org.apache.commons.cli.Option; import org.apache.commons.cli.Options;