csharp: Make concrete classes internal.

Summary:
They don't need to be public anymore. After merging other changes we can
try to actually remove them.

Fixes T7801

Reviewers: segfaultxavi, vitor.sousa, felipealmeida

Reviewed By: segfaultxavi, vitor.sousa

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T7801

Differential Revision: https://phab.enlightenment.org/D8601
This commit is contained in:
Lauro Moura 2019-04-15 14:28:25 +02:00 committed by Xavi Artigas
parent cff35dc9dc
commit 332d6368cd
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ struct klass
if(!as_generator
(
documentation
<< "sealed public class " << concrete_name << " : " << "\n"
<< "sealed internal class " << concrete_name << " : " << "\n"
<< (klass_full_concrete_or_interface_name % ",") << "\n"
<< (inherit_classes.size() > 0 ? ", " : "" ) << interface_name << "\n"
<< scope_tab << *(", " << name_helpers::klass_full_concrete_or_interface_name) << "\n"