I have issues on my GovernmentOrUnit can anyone make it work??
For further actions, you may consider blocking this person and/or reporting abuse
I have issues on my GovernmentOrUnit can anyone make it work??
For further actions, you may consider blocking this person and/or reporting abuse
Miguel Manjarres -
K M Rejowan Ahmmed -
codemee -
jazzybruno -
Once suspended, dungaat will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, dungaat will be able to comment and publish posts again.
Once unpublished, all posts by dungaat will become hidden and only accessible to themselves.
If dungaat is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Rainy Days.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag dungaat:
Unflagging dungaat will restore default visibility to their posts.
Top comments (2)
In your GovernmentOrgUnit class, you have a method at the bottom,
public void setClearance(int )
your error is because you do not have a parameter declared. It needs to look like this:
public void setClearance(int a)
or
public void setClearance()
if you do not intend to pass anything
What are the issues?