Cleaned up and updated .styleguide for new build system file locations and ran wpiformat (#612)

This commit is contained in:
Tyler Veness
2017-08-19 22:14:34 -07:00
committed by Peter Johnson
parent 1a9a6c3678
commit 2a9c454baa
6 changed files with 39 additions and 61 deletions

View File

@@ -1,17 +1,24 @@
package edu.wpi.first.wpilibj;
import edu.wpi.first.wpiutil.RuntimeDetector;
import edu.wpi.first.wpilibj.hal.HALUtil;
import edu.wpi.first.wpilibj.networktables.NetworkTablesJNI;
public class DevMain {
/**
* Main entry point.
*/
public static void main(String[] args) {
System.out.println("Hello World!");
System.out.println(RuntimeDetector.getPlatformPath());
System.out.println(NetworkTablesJNI.now());
System.out.println(HALUtil.getHALRuntimeType());
}
}
/*----------------------------------------------------------------------------*/
/* Copyright (c) FIRST 2017. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
package edu.wpi.first.wpilibj;
import edu.wpi.first.wpiutil.RuntimeDetector;
import edu.wpi.first.wpilibj.hal.HALUtil;
import edu.wpi.first.wpilibj.networktables.NetworkTablesJNI;
public class DevMain {
/**
* Main entry point.
*/
public static void main(String[] args) {
System.out.println("Hello World!");
System.out.println(RuntimeDetector.getPlatformPath());
System.out.println(NetworkTablesJNI.now());
System.out.println(HALUtil.getHALRuntimeType());
}
}