# Processing's annotation processing is not consistent

**URL:** https://discourse.processing.org/t/processings-annotation-processing-is-not-consistent/11354
**Category:** Processing
**Created:** [May 18, 2019, 2:35pm UTC](https://discourse.processing.org/t/processings-annotation-processing-is-not-consistent/11354 "2019-05-18T14:35:38Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![macbrayne](https://avatars.discourse-cdn.com/v4/letter/m/5f8ce5/32.png) [@macbrayne](https://discourse.processing.org/u/macbrayne)
#### Post date: [May 18, 2019, 2:35pm UTC](https://discourse.processing.org/t/processings-annotation-processing-is-not-consistent/11354/1 "2019-05-18T14:35:38Z")

</div>

Hi there,

Processing (v3.5.3 on Windows 10) does not warn when using @Deprecated methods however a program can’t run if a @Override annotation doesn’t actually override anything.  
Behavior when using @Override and nothing is being overridden: The method […] must override or implement a supertype method  
Behavior when using a deprecated method: No warning is given when trying to run the program.

Example code:

```auto
void setup() {
  
}

void draw() {
  imold();
}

@Deprecated
void imold() {
  // Does old things
}

```

The expected behavior is warning the user via the console if he uses a deprecated method.  
Is there any way to use the @Deprecated annotation in Processing?

Kind regards  
macbrayne

---

<div class="post-metadata">

### Author: ![jeremydouglass](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jeremydouglass/32/20_2.png) [@jeremydouglass](https://discourse.processing.org/u/jeremydouglass)
#### Post date: [May 20, 2019, 7:16pm UTC](https://discourse.processing.org/t/processings-annotation-processing-is-not-consistent/11354/2 "2019-05-20T19:16:49Z")

</div>

Hmm. Not sure. Perhaps chime in on this open an issue for the question?

> <https://github.com/processing/processing/issues/5216>
