HandCoded.Meta.SchemaRelease.RemoveImport C# (CSharp) Method

RemoveImport() public method

Breaks the bi-directional reference between this SchemaRelease and the indicated one.
public RemoveImport ( SchemaRelease release ) : void
release SchemaRelease The no longer imported.
return void
        public void RemoveImport(SchemaRelease release)
        {
            this.imports.Remove (release);
            release.importedBy.Remove (this);
        }