]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libvaladoc: Drop Api.Browsable
authorRico Tzschichholz <ricotz@ubuntu.com>
Sat, 17 Nov 2018 09:11:40 +0000 (10:11 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Sun, 25 Nov 2018 09:32:30 +0000 (10:32 +0100)
libvaladoc/Makefile.am
libvaladoc/api/browsable.vala [deleted file]
libvaladoc/api/node.vala

index 1e19d0c236f3eaffd782dbb064c0bc5d3cf3d3dd..c2f431d9ff9999eedc42b904dd6aa6934032f43c 100644 (file)
@@ -93,7 +93,6 @@ libvaladoc_la_VALASOURCES = \
        api/typeparameter.vala \
        api/typereference.vala \
        api/typesymbol.vala \
-       api/browsable.vala \
        api/visitor.vala \
        api/driver.vala \
        content/block.vala \
diff --git a/libvaladoc/api/browsable.vala b/libvaladoc/api/browsable.vala
deleted file mode 100644 (file)
index 7ae9b80..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* browsable.vala
- *
- * Copyright (C) 2008  Florian Brosch
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
- *
- * Author:
- *     Florian Brosch <flo.brosch@gmail.com>
- */
-
-
-/**
- * Specifies whether users are able to browse the item.
- */
-public interface Valadoc.Api.Browsable : Item {
-
-       /**
-        * Specifies whether users are able to browse the item.
-        */
-       public abstract bool is_browsable (Settings settings);
-}
index 7e92206f56b7dca440038004e6a96e7ee74b0c15..298ff0f7bdedfa8dbc7b2aa1defd9c77e74a71fb 100644 (file)
@@ -25,7 +25,7 @@
 /**
  * Represents a node in the api tree.
  */
-public abstract class Valadoc.Api.Node : Item, Browsable, Documentation {
+public abstract class Valadoc.Api.Node : Item, Documentation {
        protected bool do_document = false;
        private SourceFile file;