File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed
src/main/java/com/neuronrobotics Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 3838
3939import java .net .MalformedURLException ;
4040import java .net .URISyntaxException ;
41- import java .net .URL ;
4241import java .net .URI ;
4342import java .util .ArrayList ;
4443import java .util .List ;
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ public AbstractBowlerStudioTab generateNewPlugin()
6060 return factory .generateNewPlugin ();
6161
6262 // This is where the new tab allocation is called
63- return (AbstractBowlerStudioTab ) Class .forName (plugin .getName ()).cast (plugin .newInstance ()
64- );
63+ return (AbstractBowlerStudioTab ) Class .forName (plugin .getName ()).cast (plugin .newInstance ());
6564 }
6665}
Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ public String nameOfEditor() {
6666 @ Override
6767 public URL getInstallURL () throws MalformedURLException {
6868 try {
69- return new URI ("https://github.com/WPIRoboticsEngineering/RobotInterfaceBoard/blob/master/InstallEclipse.md" ).toURL ();
69+ return new URI (
70+ "https://github.com/WPIRoboticsEngineering/RobotInterfaceBoard/blob/master/InstallEclipse.md" )
71+ .toURL ();
7072 } catch (URISyntaxException e ) {
7173 throw new MalformedURLException (e .getMessage ());
7274 }
Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ public void onProcessExit(int ev) {
9494 @ Override
9595 public URL getInstallURL () throws MalformedURLException {
9696 try {
97- return new URI ("https://www.blender.org/download/release/Blender4.1/blender-4.1.1-linux-x64.tar.xz/" ).toURL ();
97+ return new URI ("https://www.blender.org/download/release/Blender4.1/blender-4.1.1-linux-x64.tar.xz/" )
98+ .toURL ();
9899 } catch (URISyntaxException e ) {
99100 throw new MalformedURLException (e .getMessage ());
100101 }
Original file line number Diff line number Diff line change @@ -268,7 +268,8 @@ public String nameOfEditor() {
268268 @ Override
269269 public URL getInstallURL () throws MalformedURLException {
270270 try {
271- return new URI ("https://github.com/CommonWealthRobotics/ESP32ArduinoEclipseInstaller/blob/master/README.md" ).toURL ();
271+ return new URI ("https://github.com/CommonWealthRobotics/ESP32ArduinoEclipseInstaller/blob/master/README.md" )
272+ .toURL ();
272273 } catch (URISyntaxException e ) {
273274 throw new MalformedURLException (e .getMessage ());
274275 }
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public void SetOrientation(TransformNR newPose) {
145145
146146 TransformNR global = getFiducialToGlobalTransform ().copy ();
147147 // use the camera global fraame elevation
148- double rotationElevationDegrees = - newPose .getRotation ().getRotationElevationDegrees () - 90 ;
148+ double rotationElevationDegrees = -newPose .getRotation ().getRotationElevationDegrees () - 90 ;
149149 double azimuthDegrees = 90 - newPose .getRotation ().getRotationAzimuthDegrees ();
150150 double globalElevationDegrees = global .getRotation ().getRotationElevationDegrees ();
151151
Original file line number Diff line number Diff line change 88
99import javax .swing .JOptionPane ;
1010
11- import com .neuronrobotics .sdk .common .SDKInfo ;
12-
1311public class CSVWriter {
1412 private CSVWriter () {
1513 }
You can’t perform that action at this time.
0 commit comments