summaryrefslogtreecommitdiff
path: root/libvaladoc
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-11-17 10:11:40 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2018-11-25 10:32:30 +0100
commit362eec6b5a9282973bf39b871dcee12cbb7fa19b (patch)
tree43cf66fdce1f2ba8c1fbca0da70ea948f8e73261 /libvaladoc
parent5b7827b6069cca7be07bad78bca40d93e857d2a0 (diff)
downloadvala-362eec6b5a9282973bf39b871dcee12cbb7fa19b.tar.gz
libvaladoc: Drop Api.Browsable
Diffstat (limited to 'libvaladoc')
-rw-r--r--libvaladoc/Makefile.am1
-rw-r--r--libvaladoc/api/browsable.vala33
-rw-r--r--libvaladoc/api/node.vala2
3 files changed, 1 insertions, 35 deletions
diff --git a/libvaladoc/Makefile.am b/libvaladoc/Makefile.am
index 1e19d0c23..c2f431d9f 100644
--- a/libvaladoc/Makefile.am
+++ b/libvaladoc/Makefile.am
@@ -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
index 7ae9b80fb..000000000
--- a/libvaladoc/api/browsable.vala
+++ /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);
-}
diff --git a/libvaladoc/api/node.vala b/libvaladoc/api/node.vala
index 7e92206f5..298ff0f7b 100644
--- a/libvaladoc/api/node.vala
+++ b/libvaladoc/api/node.vala
@@ -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;