Skip to content

Commit

Permalink
Rename Runner.java to ParkingLotRunner.java
Browse files Browse the repository at this point in the history
Runner.java has been renamed to ParkingLotRunner.java to better reflect its purpose within the parking lot system. This change enhances the clarity of the codebase, making it easier to understand the role of each class in the overall system design. An unused import (java.util.Locale) was also removed in this process.
  • Loading branch information
pateash committed Jan 5, 2024
1 parent eefe076 commit 19264c0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package live.ashish.cpjava.systemdesign.parkinglot;


import java.util.Locale;
import java.util.Scanner;

public class Runner {
public class ParkingLotRunner {
public static void main(String[] args) {

Scanner input = new Scanner(System.in);
Expand Down

0 comments on commit 19264c0

Please sign in to comment.