GoogleCodeArchives / editra

Automatically exported from code.google.com/p/editra
Other
0 stars 0 forks source link

[patch] CodeBrowser Java doesn't find methods where opening bracket is on the same line as method definition #467

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This patch fixes the following issue:

From Cody: <<

Found one issue in a quick test, it will not find methods inside a class if
the { is on the same line as the method definition.

i.e:

Doesnt Find:

private static void createAndShowGUI() {

Does Find:

private static void createAndShowGUI()
{
>>

Original issue reported on code.google.com by gaudet.e...@gmail.com on 30 Jan 2010 at 2:00

Attachments:

GoogleCodeExporter commented 9 years ago
Applied thank you

Original comment by CodyPrec...@gmail.com on 30 Jan 2010 at 6:57