Hithomelabs/CFTunnels#115: Fix mixed indentation (tabs to spaces)

This commit is contained in:
Dave the Dev 2026-04-15 18:36:20 +00:00
parent ac2ae0a59f
commit 4460e86776

View File

@ -33,13 +33,13 @@ package com.hithomelabs.CFTunnels;
@SpringBootApplication @SpringBootApplication
public class CfTunnelsApplication { public class CfTunnelsApplication {
/** /**
* Main entry point for the application. * Main entry point for the application.
* *
* @param args command line arguments passed to the application * @param args command line arguments passed to the application
*/ */
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(CfTunnelsApplication.class, args); SpringApplication.run(CfTunnelsApplication.class, args);
} }
} }