Bonjour,

J'ai importé un projet Android dans Eclipse et juste après j'ai obtenu cette erreur :
$assertionsDisabled cannot be resolved to a variable.
Voici la partie du code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
static
  {
    if (!Constants.class.desiredAssertionStatus());
    for (boolean bool = true; ; bool = false)
    {
      $assertionsDisabled = bool;
      debugLogFormater = new SimpleDateFormat("MM-dd HH:mm:ss.SSS");
      callTimeFormater = new SimpleDateFormat("mm:ss");
      fileLogFormater = new SimpleDateFormat("yyyy_MM_dd_HH_mm");
      return;
    }
  }
Quelqu'un saurait-il m'indiquer comment résoudre ce problème ?

Merci d'avance pour votre aide.