better param name

This commit is contained in:
Alexander Doroshko
2012-08-21 17:30:44 +04:00
parent 4c43aa5a34
commit e0c40d9498
2 changed files with 6 additions and 6 deletions
@@ -17,8 +17,8 @@ public abstract class JpsCompositeElementBase<Self extends JpsCompositeElementBa
myContainer = new JpsElementContainerImpl(original.myContainer, this);
}
public void applyChanges(@NotNull Self element) {
myContainer.applyChanges(element.myContainer);
public void applyChanges(@NotNull Self modified) {
myContainer.applyChanges(modified.myContainer);
}
@Override
@@ -61,10 +61,10 @@ public class JpsSdkImpl<P extends JpsElement> extends JpsCompositeElementBase<Jp
}
@Override
public void applyChanges(@NotNull JpsSdkImpl<P> element) {
super.applyChanges(element);
setHomePath(element.getHomePath());
setVersionString(element.getVersionString());
public void applyChanges(@NotNull JpsSdkImpl<P> modified) {
super.applyChanges(modified);
setHomePath(modified.getHomePath());
setVersionString(modified.getVersionString());
}
@Override