From 66fdbfeb31d6d5cd2c0b6ea5125e6ee7b833cc1f Mon Sep 17 00:00:00 2001 From: Dimitry Ivanov Date: Fri, 15 Mar 2019 15:09:28 +0300 Subject: [PATCH] Remove deprecated builder method in MarkwonTheme --- .../ru/noties/markwon/core/MarkwonTheme.java | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/markwon-core/src/main/java/ru/noties/markwon/core/MarkwonTheme.java b/markwon-core/src/main/java/ru/noties/markwon/core/MarkwonTheme.java index 43848d75..8186957f 100644 --- a/markwon-core/src/main/java/ru/noties/markwon/core/MarkwonTheme.java +++ b/markwon-core/src/main/java/ru/noties/markwon/core/MarkwonTheme.java @@ -47,25 +47,7 @@ public class MarkwonTheme { public static MarkwonTheme create(@NonNull Context context) { return builderWithDefaults(context).build(); } - - /** - * Factory method to obtain an instance of {@link Builder}. Please note, that no default - * values are set. This might be useful if you require a lot of special styling that differs - * a lot with default one - * - * @return {@link Builder instance} - * @see #builderWithDefaults(Context) - * @see #builder(MarkwonTheme) - * @see #emptyBuilder() - * @since 1.0.0 - * @deprecated 3.0.0 - */ - @NonNull - @Deprecated - public static Builder builder() { - return new Builder(); - } - + /** * Create an empty instance of {@link Builder} with no default values applied *