From ba73c35f7601466d3bb822c3e07a790f6825f30f Mon Sep 17 00:00:00 2001 From: Linus Dietz Date: Sat, 29 Dec 2018 13:43:05 +0100 Subject: [PATCH] Delete the deprecated BibEntry Constructor --- src/main/java/org/jabref/model/entry/BibEntry.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/main/java/org/jabref/model/entry/BibEntry.java b/src/main/java/org/jabref/model/entry/BibEntry.java index 5a59a45fc6c..bfd5182bd11 100644 --- a/src/main/java/org/jabref/model/entry/BibEntry.java +++ b/src/main/java/org/jabref/model/entry/BibEntry.java @@ -82,17 +82,6 @@ public BibEntry() { } - /** - * Constructs a new BibEntry with the given type - * - * @param type The type to set. May be null or empty. In that case, DEFAULT_TYPE is used. - * @deprecated use {{@link #BibEntry(EntryType)}} instead - */ - @Deprecated - public BibEntry(String type) { - this(IdGenerator.next(), type); - } - /** * Constructs a new BibEntry with the given ID and given type *