summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/analysis
diff options
context:
space:
mode:
authorGravatar jeff2014-10-09 19:37:19 -0400
committerGravatar jeff2014-10-09 19:37:19 -0400
commit812e2a4630ef01463ff153ba5ffae675e8ac24ac (patch)
tree397f5f4bbfb81262faa818a50ed4e45b7cc0e249 /src/cuchaz/enigma/analysis
parentrelicense as LGPL (diff)
downloadenigma-fork-812e2a4630ef01463ff153ba5ffae675e8ac24ac.tar.gz
enigma-fork-812e2a4630ef01463ff153ba5ffae675e8ac24ac.tar.xz
enigma-fork-812e2a4630ef01463ff153ba5ffae675e8ac24ac.zip
reverting to GPL license
Diffstat (limited to 'src/cuchaz/enigma/analysis')
-rw-r--r--src/cuchaz/enigma/analysis/Access.java8
-rw-r--r--src/cuchaz/enigma/analysis/BehaviorReferenceTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/BridgeFixer.java6
-rw-r--r--src/cuchaz/enigma/analysis/ClassImplementationsTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/EntryReference.java6
-rw-r--r--src/cuchaz/enigma/analysis/EntryRenamer.java6
-rw-r--r--src/cuchaz/enigma/analysis/FieldReferenceTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/JarClassIterator.java6
-rw-r--r--src/cuchaz/enigma/analysis/JarIndex.java6
-rw-r--r--src/cuchaz/enigma/analysis/MethodImplementationsTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/ReferenceTreeNode.java6
-rw-r--r--src/cuchaz/enigma/analysis/SourceIndex.java6
-rw-r--r--src/cuchaz/enigma/analysis/SourceIndexBehaviorVisitor.java6
-rw-r--r--src/cuchaz/enigma/analysis/SourceIndexClassVisitor.java6
-rw-r--r--src/cuchaz/enigma/analysis/SourceIndexVisitor.java6
-rw-r--r--src/cuchaz/enigma/analysis/Token.java6
-rw-r--r--src/cuchaz/enigma/analysis/TranslationIndex.java6
-rw-r--r--src/cuchaz/enigma/analysis/TreeDumpVisitor.java6
20 files changed, 61 insertions, 61 deletions
diff --git a/src/cuchaz/enigma/analysis/Access.java b/src/cuchaz/enigma/analysis/Access.java
index 7ef4dcd..e35bb21 100644
--- a/src/cuchaz/enigma/analysis/Access.java
+++ b/src/cuchaz/enigma/analysis/Access.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
@@ -48,4 +48,4 @@ public enum Access
48 // assume public by default 48 // assume public by default
49 return Public; 49 return Public;
50 } 50 }
51} 51} \ No newline at end of file
diff --git a/src/cuchaz/enigma/analysis/BehaviorReferenceTreeNode.java b/src/cuchaz/enigma/analysis/BehaviorReferenceTreeNode.java
index 2a5dfe5..20f1d47 100644
--- a/src/cuchaz/enigma/analysis/BehaviorReferenceTreeNode.java
+++ b/src/cuchaz/enigma/analysis/BehaviorReferenceTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/BridgeFixer.java b/src/cuchaz/enigma/analysis/BridgeFixer.java
index 50b0315..112b864 100644
--- a/src/cuchaz/enigma/analysis/BridgeFixer.java
+++ b/src/cuchaz/enigma/analysis/BridgeFixer.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/ClassImplementationsTreeNode.java b/src/cuchaz/enigma/analysis/ClassImplementationsTreeNode.java
index bf563f1..4e9dd52 100644
--- a/src/cuchaz/enigma/analysis/ClassImplementationsTreeNode.java
+++ b/src/cuchaz/enigma/analysis/ClassImplementationsTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java b/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java
index 5e080e8..d3fc9dc 100644
--- a/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java
+++ b/src/cuchaz/enigma/analysis/ClassInheritanceTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/EntryReference.java b/src/cuchaz/enigma/analysis/EntryReference.java
index 001ea76..0cde875 100644
--- a/src/cuchaz/enigma/analysis/EntryReference.java
+++ b/src/cuchaz/enigma/analysis/EntryReference.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/EntryRenamer.java b/src/cuchaz/enigma/analysis/EntryRenamer.java
index a9447e6..2d59fe9 100644
--- a/src/cuchaz/enigma/analysis/EntryRenamer.java
+++ b/src/cuchaz/enigma/analysis/EntryRenamer.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/FieldReferenceTreeNode.java b/src/cuchaz/enigma/analysis/FieldReferenceTreeNode.java
index a0ad807..2652f64 100644
--- a/src/cuchaz/enigma/analysis/FieldReferenceTreeNode.java
+++ b/src/cuchaz/enigma/analysis/FieldReferenceTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/JarClassIterator.java b/src/cuchaz/enigma/analysis/JarClassIterator.java
index c1a1c6c..f65b8e7 100644
--- a/src/cuchaz/enigma/analysis/JarClassIterator.java
+++ b/src/cuchaz/enigma/analysis/JarClassIterator.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/JarIndex.java b/src/cuchaz/enigma/analysis/JarIndex.java
index d124a24..0954564 100644
--- a/src/cuchaz/enigma/analysis/JarIndex.java
+++ b/src/cuchaz/enigma/analysis/JarIndex.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/MethodImplementationsTreeNode.java b/src/cuchaz/enigma/analysis/MethodImplementationsTreeNode.java
index fa10c33..a050282 100644
--- a/src/cuchaz/enigma/analysis/MethodImplementationsTreeNode.java
+++ b/src/cuchaz/enigma/analysis/MethodImplementationsTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java b/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java
index 484f81b..bd91951 100644
--- a/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java
+++ b/src/cuchaz/enigma/analysis/MethodInheritanceTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/ReferenceTreeNode.java b/src/cuchaz/enigma/analysis/ReferenceTreeNode.java
index 11ff850..e0a0a74 100644
--- a/src/cuchaz/enigma/analysis/ReferenceTreeNode.java
+++ b/src/cuchaz/enigma/analysis/ReferenceTreeNode.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/SourceIndex.java b/src/cuchaz/enigma/analysis/SourceIndex.java
index 95a0602..0e33de0 100644
--- a/src/cuchaz/enigma/analysis/SourceIndex.java
+++ b/src/cuchaz/enigma/analysis/SourceIndex.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/SourceIndexBehaviorVisitor.java b/src/cuchaz/enigma/analysis/SourceIndexBehaviorVisitor.java
index e274254..7ffd170 100644
--- a/src/cuchaz/enigma/analysis/SourceIndexBehaviorVisitor.java
+++ b/src/cuchaz/enigma/analysis/SourceIndexBehaviorVisitor.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/SourceIndexClassVisitor.java b/src/cuchaz/enigma/analysis/SourceIndexClassVisitor.java
index 81d1568..24c4822 100644
--- a/src/cuchaz/enigma/analysis/SourceIndexClassVisitor.java
+++ b/src/cuchaz/enigma/analysis/SourceIndexClassVisitor.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/SourceIndexVisitor.java b/src/cuchaz/enigma/analysis/SourceIndexVisitor.java
index b6bf9d0..4e98989 100644
--- a/src/cuchaz/enigma/analysis/SourceIndexVisitor.java
+++ b/src/cuchaz/enigma/analysis/SourceIndexVisitor.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/Token.java b/src/cuchaz/enigma/analysis/Token.java
index 388acd4..5e70db7 100644
--- a/src/cuchaz/enigma/analysis/Token.java
+++ b/src/cuchaz/enigma/analysis/Token.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/TranslationIndex.java b/src/cuchaz/enigma/analysis/TranslationIndex.java
index f2f6e0a..5311ec7 100644
--- a/src/cuchaz/enigma/analysis/TranslationIndex.java
+++ b/src/cuchaz/enigma/analysis/TranslationIndex.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/src/cuchaz/enigma/analysis/TreeDumpVisitor.java b/src/cuchaz/enigma/analysis/TreeDumpVisitor.java
index 4ad234b..e6ecb10 100644
--- a/src/cuchaz/enigma/analysis/TreeDumpVisitor.java
+++ b/src/cuchaz/enigma/analysis/TreeDumpVisitor.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2014 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public 4 * are made available under the terms of the GNU Public License v3.0
5 * License v3.0 which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html 6 * http://www.gnu.org/licenses/gpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation