summaryrefslogtreecommitdiff
path: root/vala/valausedattr.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-03-27 12:46:26 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2018-03-27 13:12:02 +0200
commit55d883a5b593be366aff440ead4571ee76d86d02 (patch)
treebe85465984a784b0e553a1c15f6e9c91b257be3c /vala/valausedattr.vala
parent7bd54c7a88555831febf186295cc44a7301aa83f (diff)
downloadvala-55d883a5b593be366aff440ead4571ee76d86d02.tar.gz
Drop trailing spaces/tabs
It was about time to do this.
Diffstat (limited to 'vala/valausedattr.vala')
-rw-r--r--vala/valausedattr.vala12
1 files changed, 6 insertions, 6 deletions
diff --git a/vala/valausedattr.vala b/vala/valausedattr.vala
index 4a76e2df4..4947b33a9 100644
--- a/vala/valausedattr.vala
+++ b/vala/valausedattr.vala
@@ -63,7 +63,7 @@ public class Vala.UsedAttr : CodeVisitor {
"Version", "since", "replacement", "deprecated", "deprecated_since", "experimental", "experimental_until", "",
"Signal", "detailed", "run", "no_recurse", "action", "no_hooks", "",
"Description", "nick", "blurb", "",
-
+
"IntegerType", "rank", "min", "max", "signed", "width", "",
"FloatingType", "rank", "decimal", "width", "",
"BooleanType", "",
@@ -86,7 +86,7 @@ public class Vala.UsedAttr : CodeVisitor {
"GIR", "fullname", "name", ""
};
-
+
public UsedAttr () {
// mark default valac attrs
var curattr = "";
@@ -103,7 +103,7 @@ public class Vala.UsedAttr : CodeVisitor {
}
}
}
-
+
/**
* Mark the attribute or attribute argument as used by the compiler
*/
@@ -118,7 +118,7 @@ public class Vala.UsedAttr : CodeVisitor {
set.add (argument);
}
}
-
+
/**
* Traverse the code tree and warn about unused attributes.
*
@@ -145,12 +145,12 @@ public class Vala.UsedAttr : CodeVisitor {
}
}
}
-
+
public override void visit_namespace (Namespace ns) {
check_unused_attr (ns);
ns.accept_children (this);
}
-
+
public override void visit_class (Class cl) {
check_unused_attr (cl);
cl.accept_children (this);