Skip to content

Commit

Permalink
Fix a deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
WarningImHack3r committed Aug 1, 2024
1 parent 5ebcbdc commit e4c0f6a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

## [Unreleased]

## [3.0.0] - 2024-08-01

### Removed

- Drop support for 2022.1 and 2022.2 IDEs (#116)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import com.intellij.psi.PsiDocumentManager
import com.intellij.ui.ToolbarDecorator
import com.intellij.ui.components.JBCheckBox
import com.intellij.ui.dsl.builder.*
import com.intellij.ui.dsl.gridLayout.HorizontalAlign
import com.intellij.ui.table.TableView
import com.intellij.util.ui.ColumnInfo
import com.intellij.util.ui.ListTableModel
Expand Down Expand Up @@ -102,7 +101,7 @@ class NUDSettingsComponent {
.disableUpDownActions()
.createPanel()
)
.horizontalAlign(HorizontalAlign.FILL)
.align(AlignX.FILL)
}
}
setTitle("Excluded Versions")
Expand Down

0 comments on commit e4c0f6a

Please sign in to comment.