From ee585e2fb8cbf94892d92b054fcf1ba288a94ba5 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 15 Jun 2018 08:11:29 +0100 Subject: [PATCH] Remove empty files --- src/main/java/net/kemitix/gitdb/Author.java | 38 ------------------ src/main/java/net/kemitix/gitdb/Document.java | 39 ------------------- src/main/java/net/kemitix/gitdb/Key.java | 34 ---------------- src/main/java/net/kemitix/gitdb/Message.java | 33 ---------------- .../java/net/kemitix/gitdb/Reference.java | 30 -------------- .../java/net/kemitix/gitdb/Transaction.java | 30 -------------- 6 files changed, 204 deletions(-) delete mode 100644 src/main/java/net/kemitix/gitdb/Author.java delete mode 100644 src/main/java/net/kemitix/gitdb/Document.java delete mode 100644 src/main/java/net/kemitix/gitdb/Key.java delete mode 100644 src/main/java/net/kemitix/gitdb/Message.java delete mode 100644 src/main/java/net/kemitix/gitdb/Reference.java delete mode 100644 src/main/java/net/kemitix/gitdb/Transaction.java diff --git a/src/main/java/net/kemitix/gitdb/Author.java b/src/main/java/net/kemitix/gitdb/Author.java deleted file mode 100644 index 46b3276..0000000 --- a/src/main/java/net/kemitix/gitdb/Author.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import lombok.Getter; -//import lombok.RequiredArgsConstructor; - -//@RequiredArgsConstructor -//public class Author { -// -// @Getter -// private final String name; -// @Getter -// private final String email; -// -// public static Author name(final String name, final String email) { -// return new Author(name, email); -// } -//} diff --git a/src/main/java/net/kemitix/gitdb/Document.java b/src/main/java/net/kemitix/gitdb/Document.java deleted file mode 100644 index ca01a7e..0000000 --- a/src/main/java/net/kemitix/gitdb/Document.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import lombok.Getter; -//import lombok.RequiredArgsConstructor; - -//@RequiredArgsConstructor -//public class Document { -// -// public static Document create(Key key, T value) { -// return new Document<>(key, value); -// } -// -// @Getter -// private final Key key; -// -// @Getter -// private final T value; -//} diff --git a/src/main/java/net/kemitix/gitdb/Key.java b/src/main/java/net/kemitix/gitdb/Key.java deleted file mode 100644 index 2e7feb9..0000000 --- a/src/main/java/net/kemitix/gitdb/Key.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import net.kemitix.mon.TypeAlias; - -//public class Key extends TypeAlias { -// protected Key(final String value) { -// super(value); -// } -// -// public static Key name(final String name) { -// return new Key(name); -// } -//} diff --git a/src/main/java/net/kemitix/gitdb/Message.java b/src/main/java/net/kemitix/gitdb/Message.java deleted file mode 100644 index 4580b23..0000000 --- a/src/main/java/net/kemitix/gitdb/Message.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import net.kemitix.mon.TypeAlias; - -//public class Message extends TypeAlias { -// protected Message(final String value) { -// super(value); -// } -// public static Message message(final String message) { -// return new Message(message); -// } -//} diff --git a/src/main/java/net/kemitix/gitdb/Reference.java b/src/main/java/net/kemitix/gitdb/Reference.java deleted file mode 100644 index 066dc3a..0000000 --- a/src/main/java/net/kemitix/gitdb/Reference.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import net.kemitix.mon.TypeAlias; - -//public class Reference extends TypeAlias { -// protected Reference(String value) { -// super(value); -// } -//} diff --git a/src/main/java/net/kemitix/gitdb/Transaction.java b/src/main/java/net/kemitix/gitdb/Transaction.java deleted file mode 100644 index 301f8c3..0000000 --- a/src/main/java/net/kemitix/gitdb/Transaction.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - The MIT License (MIT) - - Copyright (c) 2018 Paul Campbell - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software - and associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies - or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, - INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE - AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, - DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -package net.kemitix.gitdb; - -//import net.kemitix.mon.TypeAlias; - -//public class Transaction extends TypeAlias { -// protected Transaction(String value) { -// super(value); -// } -//}