vivekkoya / classfiles

toString invoked on a string value is useless JAVA-P0064
Performance
Major
a year ago2 years old
String.toString is redundant and inefficient, use the string directly instead
 87						break;
 88					}
 89					if (seat != null)
 90						System.out.println(i + 10 + alphaPos + ": " + seat.name.toString()); 91				}
 92			}
 93		}
String.toString is redundant and inefficient, use the string directly instead
 52
 53					}
 54					if (seat != null)
 55						System.out.println(j + 1 + alphaPos + ": " + seat.name.toString()); 56				}
 57			}
 58		} else {