You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package private abstract classes are generated with the plugin in this manner:
abstract ~class SomeAbstractClass {
...
}
which is a syntax error:
Normally the '~' sign must be written before abstract like this :
~abstract class SomeAbstractClass {
...
}
The text was updated successfully, but these errors were encountered:
mchs62
changed the title
Syntax error when generating package protected abstract classes
Syntax error when generating package private abstract classes
May 10, 2022
package private abstract classes are generated with the plugin in this manner:
abstract ~class SomeAbstractClass {
...
}
which is a syntax error:
Normally the '~' sign must be written before abstract like this :
~abstract class SomeAbstractClass {
...
}
The text was updated successfully, but these errors were encountered: