From: Jürg Billeter Date: Sat, 9 May 2009 14:49:59 +0000 (+0200) Subject: Remove unused CodeContext.library property X-Git-Tag: 0.7.3~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c57404be5e6df2b9ed0529a753a545e45bef5a77;p=thirdparty%2Fvala.git Remove unused CodeContext.library property --- diff --git a/compiler/valacompiler.vala b/compiler/valacompiler.vala index 6d3a1b276..b85850b40 100644 --- a/compiler/valacompiler.vala +++ b/compiler/valacompiler.vala @@ -171,7 +171,6 @@ class Vala.Compiler { } } - context.library = library; context.assert = !disable_assert; context.checking = enable_checking; context.deprecated = deprecated; diff --git a/vala/valacodecontext.vala b/vala/valacodecontext.vala index adc606381..f8fecf415 100644 --- a/vala/valacodecontext.vala +++ b/vala/valacodecontext.vala @@ -27,14 +27,6 @@ using Gee; * The root of the code tree. */ public class Vala.CodeContext { - /** - * Specifies the name of the library to be built. - * - * Public header files of a library will be assumed to be installed in - * a subdirectory named like the library. - */ - public string library { get; set; } - /** * Enable automatic memory management. */