Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Indenting Closing Brace?

Status
Not open for further replies.

trinithis

Programmer
Joined
Jun 28, 2007
Messages
1
Location
US
I just got JBuilder Turbo 2007, and I can't figure out how to make the closing brace of my classes and methods indented.

This is how I want my code to look:

public class MyClass {
private int myInt;
public MyClass(int val) {
myInt = val;
}
public int getMyInt() {
return myInt;
}
}


This is how it currently looks:
public class MyClass {
private int myInt;
public MyClass(int val) {
myInt = val;
}
public int getMyInt() {
return myInt;
}
}
 
i coulndt see a diffrence on the looks?
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top