Bug on Introduce parameter


BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Given this code:

public
Project(String projectFileName)
{
this.projectFileName = projectFileName;
filePattern = "*.cs";
}

Introduce parameter on "*.cs" and giving the name filePattern results in:

public
Project(String projectFileName, string filePattern)
{
this.projectFileName = projectFileName;
filePattern = filePattern;
}

(note the lack of this on the filePattern member variable).

Known bug perhaps?

Regards,
Pablo

-


BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (MingW32)

iD8DBQFDHdgNvooSiBfQCSoRAuStAJkBpVuKyiP1MxpMtO9lrhsjiUFrDACgttjg
GVYOif6SywHIgQnIEHTxv4I=
=uFa8
-


END PGP SIGNATURE-----

0
1 comment
Avatar
Permanently deleted user

Probably this bug is not known. Could you please submit it into the Tracker?

Valentin Kipiatkov
Chief Scientist, Vice President of Product Development
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"

---BEGIN PGP SIGNED MESSAGE---
Hash: SHA1

Given this code:

public
Project(String projectFileName)
{
this.projectFileName = projectFileName;
filePattern = "*.cs";
}
Introduce parameter on "*.cs" and giving the name filePattern results
in:

public
Project(String projectFileName, string filePattern)
{
this.projectFileName = projectFileName;
filePattern = filePattern;
}
(note the lack of this on the filePattern member variable).

Known bug perhaps?

Regards,
Pablo
---BEGIN PGP SIGNATURE---

>> Version: GnuPG v1.2.1 (MingW32)
>>
>> iD8DBQFDHdgNvooSiBfQCSoRAuStAJkBpVuKyiP1MxpMtO9lrhsjiUFrDACgttjg
>> GVYOif6SywHIgQnIEHTxv4I=
>> =uFa8

---END PGP SIGNATURE---



0

Please sign in to leave a comment.