Skip to content

Commit 34cac1f

Browse files
cmaglielmihalkovic
authored andcommitted
Renamed ContributedLibraryTableCell to ContributedLibraryTableCellRenderer
This is in preparation for the next refactoring.
1 parent 1ed8218 commit 34cac1f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java renamed to app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCellRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
import processing.app.Base;
7070

7171
@SuppressWarnings("serial")
72-
public class ContributedLibraryTableCell extends InstallerTableCell {
72+
public class ContributedLibraryTableCellRenderer extends InstallerTableCell {
7373

7474
private class Cell {
7575
private final JPanel panel;

app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ private LibrariesIndexTableModel getContribModel() {
6666

6767
@Override
6868
protected InstallerTableCell createCellRenderer() {
69-
return new ContributedLibraryTableCell();
69+
return new ContributedLibraryTableCellRenderer();
7070
}
7171

7272
@Override
7373
protected InstallerTableCell createCellEditor() {
74-
return new ContributedLibraryTableCell() {
74+
return new ContributedLibraryTableCellRenderer() {
7575
@Override
7676
protected void onInstall(ContributedLibrary selectedLibrary, ContributedLibrary installedLibrary) {
7777
if (selectedLibrary.isReadOnly()) {

0 commit comments

Comments
 (0)