Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8324793

Fold simple range checks

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P5 P5
    • None
    • 23
    • hotspot
    • None
    • generic
    • generic

      For example, we can fold

      ```
      if (i > 3000) {
        if (i > 2000) {
        }
      }
      ```

      into

      ```
      if (i > 3000) {}
      ```

            jcao Joshua Cao
            jcao Joshua Cao
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: