Skip to content

Commit 8ae80c7

Browse files
committed
Merge remote-tracking branch 'origin/master' into
25-change-callbacks-to-use-functional-interfaces Conflicts: CHANGES.md
2 parents 8a90198 + fb55ebc commit 8ae80c7

20 files changed

+224
-37
lines changed

.checkstyle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<!--
4+
Copyright (c) 2021, 2022 John Whaley and others
5+
6+
See the CONTRIBUTORS file(s) distributed with this work for additional
7+
information regarding copyright ownership.
8+
9+
This program and the accompanying materials are made available under the
10+
terms of the GNU Library General Public License v2 or later, which is
11+
available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
13+
SPDX-License-Identifier: LGPL-2.0-or-later
14+
-->
15+
316
<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
417
<local-check-config name="JavaBDD Checkstyle" location="checkstyle.xml" type="project" description="JavaBDD Checkstyle.">
518
<additional-data name="protect-config-file" value="false"/>

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
##############################################################################
2+
# Copyright (c) 2020, 2022 John Whaley and others
3+
#
4+
# See the CONTRIBUTORS file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the GNU Library General Public License v2 or later, which is
9+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
#
11+
# SPDX-License-Identifier: LGPL-2.0-or-later
12+
##############################################################################
13+
114
/target/
215
/pom.xml.releaseBackup
316
/release.properties

COPYING

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ It is based on trunk revision r483 from 2011-11-24.
3030

3131
See [CHANGES.md](CHANGES.md) for all changes that have been made in this fork.
3232

33+
See [CONTRIBUTORS.md][CONTRIBUTORS.md] for all contributors.
34+
3335
## License
3436

3537
This project inherits the license from the Sourceforge project it is forked

build.properties

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
##############################################################################
2+
# Copyright (c) 2020, 2022 John Whaley and others
3+
#
4+
# See the CONTRIBUTORS file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the GNU Library General Public License v2 or later, which is
9+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
#
11+
# SPDX-License-Identifier: LGPL-2.0-or-later
12+
##############################################################################
13+
114
source.. = src/main/java/
215
bin.includes = .,\
316
META-INF/

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<!--
2+
Copyright (c) 2020, 2022 John Whaley and others
3+
4+
See the CONTRIBUTORS file(s) distributed with this work for additional
5+
information regarding copyright ownership.
6+
7+
This program and the accompanying materials are made available under the
8+
terms of the GNU Library General Public License v2 or later, which is
9+
available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
11+
SPDX-License-Identifier: LGPL-2.0-or-later
12+
-->
13+
114
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
215

316
<modelVersion>4.0.0</modelVersion>

release-perform

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
#!/usr/bin/bash
22

3+
##############################################################################
4+
# Copyright (c) 2020, 2022 John Whaley and others
5+
#
6+
# See the CONTRIBUTORS file(s) distributed with this work for additional
7+
# information regarding copyright ownership.
8+
#
9+
# This program and the accompanying materials are made available under the
10+
# terms of the GNU Library General Public License v2 or later, which is
11+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
#
13+
# SPDX-License-Identifier: LGPL-2.0-or-later
14+
##############################################################################
15+
316
if [[ ! -f release.properties ]]; then
417
echo "Need to prepare release first."
518
exit 1

release-prepare

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
#!/usr/bin/bash
22

3+
##############################################################################
4+
# Copyright (c) 2020, 2022 John Whaley and others
5+
#
6+
# See the CONTRIBUTORS file(s) distributed with this work for additional
7+
# information regarding copyright ownership.
8+
#
9+
# This program and the accompanying materials are made available under the
10+
# terms of the GNU Library General Public License v2 or later, which is
11+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
#
13+
# SPDX-License-Identifier: LGPL-2.0-or-later
14+
##############################################################################
15+
316
mvn clean
417
rm -f pom.xml.releaseBackup
518
rm -f release.properties

src/main/java/com/github/javabdd/BDD.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDD.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDBitVector.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDBitVector.java, created Jul 14, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDDomain.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDDomain.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDException.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDException.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDFactory.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDFactory.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDFactoryIntImpl.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDFactoryIntImpl.java, created Jul 16, 2006 2:59:55 PM by jwhaley
2-
// Copyright (C) 2004-2006 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2004, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDPairing.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDPairing.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2-
// Copyright (C) 2003 John Whaley
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BDDVarSet.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BDDVarSet.java, created Jul 13, 2006 8:53:13 PM by jwhaley
2-
// Copyright (C) 2004-2006 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2004, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/BitString.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// BitString.java, created Wed May 16 17:26:33 2001 by joewhaley
2-
// Copyright (C) 2001-3 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2001, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/FindBestOrder.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// FindBestOrder.java, created Apr 2, 2004 10:43:21 PM 2004 by jwhaley
2-
// Copyright (C) 2004 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2004, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/JFactory.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// JFactory.java, created Aug 1, 2003 7:06:47 PM by joewhaley
2-
// Copyright (C) 2003 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2003, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

src/main/java/com/github/javabdd/TryVarOrder.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
// TryVarOrder.java, created Apr 2, 2004 10:43:21 PM 2004 by jwhaley
2-
// Copyright (C) 2004 John Whaley <[email protected]>
3-
// Licensed under the terms of the GNU LGPL; see COPYING for details.
1+
//////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) 2004, 2022 John Whaley and others
3+
//
4+
// See the CONTRIBUTORS file(s) distributed with this work for additional
5+
// information regarding copyright ownership.
6+
//
7+
// This program and the accompanying materials are made available under the
8+
// terms of the GNU Library General Public License v2 or later, which is
9+
// available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
//
11+
// SPDX-License-Identifier: LGPL-2.0-or-later
12+
//////////////////////////////////////////////////////////////////////////////
413

514
package com.github.javabdd;
615

0 commit comments

Comments
 (0)