Skip to content

Commit

Permalink
Copyright crap updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
N3X15 committed Jan 21, 2011
1 parent 67b0409 commit 208135d
Show file tree
Hide file tree
Showing 23 changed files with 72 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src-patches/PatchedWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import net.minecraft.server.Block;

/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/Hooks.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/Main.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/PluginListener.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/PluginLoader.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/Server.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import net.minecraft.server.World;

/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
24 changes: 24 additions & 0 deletions src/org/middlecraft/patcher/ClassComparer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
/**
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* * Neither the name of MiddleCraft nor the names of its contributors may be
* used to endorse or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.middlecraft.patcher;

Expand Down
34 changes: 27 additions & 7 deletions src/org/middlecraft/patcher/JarComparer.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
/**
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* * Neither the name of MiddleCraft nor the names of its contributors may be
* used to endorse or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.middlecraft.patcher;

import java.io.*;
Expand All @@ -8,13 +35,6 @@
import java.util.Map;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;
import java.util.zip.ZipEntry;

import org.incava.util.diff.Diff;
import org.incava.util.diff.Difference;
import org.middlecraft.server.Mappings;

import javassist.*;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/Patches.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/PatchingClassLoader.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/reflect/Add.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/reflect/Insert.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.middlecraft.patcher.reflect;
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/reflect/Patch.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/reflect/PatchRename.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/patcher/reflect/Replace.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/IDataJack.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/MCClassInfo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/MCFieldInfo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/MCMethodInfo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/Mappings.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/SaveTask.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion src/org/middlecraft/server/Utils.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.middlecraft.server;
/**
* Copyright (c) 2010, MiddleCraft Contributors
* Copyright (c) 2010-2011, MiddleCraft Contributors
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down

0 comments on commit 208135d

Please sign in to comment.