[jsword-svn] r1463 - trunk/common-aqua/src/main/java/org/crosswire/common/aqua

dmsmith at www.crosswire.org dmsmith at www.crosswire.org
Sun Jul 1 19:32:44 MST 2007


Author: dmsmith
Date: 2007-07-01 19:32:43 -0700 (Sun, 01 Jul 2007)
New Revision: 1463

Modified:
   trunk/common-aqua/src/main/java/org/crosswire/common/aqua/OSXAdapter.java
Log:
Ran Eclipse's cleanup.

Modified: trunk/common-aqua/src/main/java/org/crosswire/common/aqua/OSXAdapter.java
===================================================================
--- trunk/common-aqua/src/main/java/org/crosswire/common/aqua/OSXAdapter.java	2007-07-02 02:32:23 UTC (rev 1462)
+++ trunk/common-aqua/src/main/java/org/crosswire/common/aqua/OSXAdapter.java	2007-07-02 02:32:43 UTC (rev 1463)
@@ -19,10 +19,10 @@
 		this.prefAction = prefAction;
 		this.quitAction = quitAction;
 	}
-	
+
 	// The main entry-point for this functionality.  This is the only method
 	// that needs to be called at runtime, and it can easily be done using
-	// reflection (see MyApp.java) 
+	// reflection (see MyApp.java)
 	/**
 	 * Register the application so that About and Quit on the Application menu are hooked to the applications About and Quit choices.
 	 */
@@ -40,7 +40,7 @@
 
 		theApplication.addApplicationListener(theAdapter);
 	}
-	
+
 	/**
 	 * Enables the Preferences menu item in the application menu.
 	 */
@@ -60,7 +60,7 @@
 	{
 		handle(aboutAction, ae, true);
 	}
-	
+
 	/* (non-Javadoc)
 	 * @see com.apple.eawt.ApplicationAdapter#handlePreferences(com.apple.eawt.ApplicationEvent)
 	 */
@@ -68,13 +68,13 @@
 	{
 		handle(prefAction, ae, true);
 	}
-	
+
 	/* (non-Javadoc)
 	 * @see com.apple.eawt.ApplicationAdapter#handleQuit(com.apple.eawt.ApplicationEvent)
 	 */
 	public void handleQuit(ApplicationEvent ae)
 	{
-		/*	
+		/*
 		 * You MUST setHandled(false) if you want to delay or cancel the quit.
 		 * This is important for cross-platform development -- have a universal quit
 		 * routine that chooses whether or not to quit, so the functionality is identical
@@ -114,5 +114,5 @@
 	private String 					prefAction;
 
 	/** The application's Quit action */
-	private String 					quitAction;	
+	private String 					quitAction;
 }
\ No newline at end of file




More information about the jsword-svn mailing list