repo.or.cz
/
fedora-idea.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
"create method from usage" qualifies reference when creating method with the same...
[fedora-idea.git]
/
testData
/
refactoring
/
introduceParameter
/
afterRemoveParameterInHierarchy.java
blob
b36c26f1d237cff2a0fe175107aa9d6f2cdf9c2d
1
public class
Bar
{
2
public int
baz
(
int
anObject
) {
3
return
anObject
;
4
}
5
}
6
class
S
extends
Bar
{
7
public int
baz
(
int
anObject
) {
8
return super
.
baz
((
byte
)
0
+
3
);
//To change body of overridden methods use File | Settings | File Templates.
9
}
10
}