mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 02:57:44 +00:00
Made property change listeners private instead of protected.
This commit is contained in:
parent
14a3e3f774
commit
0bb948cefe
@ -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();
|
String eventType = evt.getPropertyName();
|
||||||
|
|
||||||
// Is this a content changed event?
|
// Is this a content changed event?
|
||||||
|
@ -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();
|
String eventType = evt.getPropertyName();
|
||||||
|
|
||||||
// See if the new file is a child of ours
|
// See if the new file is a child of ours
|
||||||
|
Loading…
x
Reference in New Issue
Block a user