Made property change listeners private instead of protected.

This commit is contained in:
esaunders 2015-07-29 18:09:55 -04:00
parent 14a3e3f774
commit 0bb948cefe
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ public abstract class AbstractAbstractFileNode<T extends AbstractFile> extends A
}
protected final PropertyChangeListener pcl = (PropertyChangeEvent evt) -> {
private final PropertyChangeListener pcl = (PropertyChangeEvent evt) -> {
String eventType = evt.getPropertyName();
// Is this a content changed event?

View File

@ -72,7 +72,7 @@ public class VolumeNode extends AbstractContentNode<Volume> {
}
protected final PropertyChangeListener pcl = (PropertyChangeEvent evt) -> {
private final PropertyChangeListener pcl = (PropertyChangeEvent evt) -> {
String eventType = evt.getPropertyName();
// See if the new file is a child of ours