Skip to content

Commit

Permalink
Cleaning comments & traces
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanue1 committed Apr 1, 2015
1 parent 92e654f commit 6344190
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/src/main/groovy/jd/gui/App.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Option:
def swing = new SwingBuilder()
swing.lookAndFeel(configuration.lookAndFeel)

// Create main controller ans show main frame
// Create main controller and show main frame
new MainController(swing, configuration).with {
show()
openFiles(args.collect { new File(it) })
Expand Down
9 changes: 0 additions & 9 deletions app/src/main/groovy/jd/gui/view/MainDescription.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,6 @@ frame(
menuItem(openTypeAction)
menuItem(openTypeHierarchyAction)
separator()
menuItem() {
action(
name:'Quick Outline...',
accelerator:shortcut('shift O'),
enabled:false,
closure:{ println("clicked on the Save menu item!") }
)
}
separator()
menuItem(goToAction)
separator()
menuItem(backwardAction)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ class ClassFilePage
indexesChanged(api.collectionOfIndexes)
} catch (Exception ignore) {
setText('// INTERNAL ERROR //')
ignore.printStackTrace()
}

maximumLineNumber = getMaximumSourceLineNumber()
Expand Down Expand Up @@ -400,7 +399,7 @@ class ClassFilePage
}

// --- FocusedTypeGettable --- //
String getFocusedTypeName() { typeDeclarations.floorEntry(textArea.caretPosition)?.value.type }
String getFocusedTypeName() { typeDeclarations.floorEntry(textArea.caretPosition)?.value?.type }

Container.Entry getEntry() { entry }

Expand Down

0 comments on commit 6344190

Please sign in to comment.