Skip to content

Commit

Permalink
Cleanup of trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
unsound committed Oct 11, 2015
1 parent 2fddd2f commit 9adc8ac
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/org/catacombae/dmg/encrypted/ExperimentalV1Header.java
Expand Up @@ -26,7 +26,7 @@ public class ExperimentalV1Header {
* struct ExperimentalV1Header
* size: 1276 bytes
* description:
*
*
* BP Size Type Identifier Description
* -------------------------------------------------------------------------------------------------------------------------------
* 0 1*16 uint8_t[16] unknown0 Unknown data.
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmg/encrypted/ExperimentalV2Header.java
Expand Up @@ -26,7 +26,7 @@ public class ExperimentalV2Header {
* struct ExperimentalV2Header
* size: 248 bytes
* description:
*
*
* BP Size Type Identifier Description
* ------------------------------------------------------------------------------------------------------------
* 0 1*8 uint8_t[8] signature Header signature (ASCII: 'encrcdsa').
Expand Down
Expand Up @@ -69,7 +69,7 @@
* FileVault" slides, published by Jacob Appelbaum and Ralf-Philipp Weinmann, and the source code of
* the utility vfdecrypt in VileFault, copyright Ralf-Philipp Weinmann, Jacob Appelbaum and
* Christian Fromme.
*
*
* @author <a href="http://www.catacombae.org/" target="_top">Erik Larsson</a>
*/
public class ReadableCEncryptedEncodingStream extends BasicReadableRandomAccessStream {
Expand Down Expand Up @@ -204,7 +204,7 @@ else if(firstException != null) {
/**
* Tells whether <code>stream</code> is encoded with CEncryptedEncoding or not. If this method
* returns true, the stream can be fed to the ReadableCEncryptedEncoding constructor.
*
*
* @param stream the stream to check for the signatures of a CEncryptedEncoding.
* @return whether <code>stream</code> is encoded with CEncryptedEncoding or not.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmg/udif/Koly.java
Expand Up @@ -27,7 +27,7 @@ public class Koly {
* struct Koly
* size: 512 bytes
* description:
*
*
* BP Size Type Identifier Description
* --------------------------------------------------------
* 0 4 UInt32 fourCC
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmgextractor/SimplerFileFilter.java
Expand Up @@ -24,7 +24,7 @@
/**
* Even simpler file filter as it only allows one extension.<br>
* Directories are always accepted.
*
*
* @author <a href="http://www.catacombae.org/" target="_top">Erik Larsson</a>
*/
public class SimplerFileFilter extends FileFilter {
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmgextractor/SwingUI.java
Expand Up @@ -26,7 +26,7 @@

/**
* User interface implementation using Java Swing.
*
*
* @author <a href="http://www.catacombae.org/" target="_top">Erik Larsson</a>
*/
class SwingUI extends BasicUI implements UserInterface {
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmgextractor/UserInterface.java
Expand Up @@ -72,7 +72,7 @@ interface UserInterface {
/**
* This method should be called to bring up a summary after a finished
* extraction/simulation process.
*
*
* @param simulation set to true when the extraction was only simulated,
* false for a real extraction.
* @param errorsReported the number of errors encountered during the
Expand Down
Expand Up @@ -30,7 +30,7 @@ public class ByteCountInputStream extends InputStream {

/**
* Creates a new ByteCountInputStream wrapping <code>is</code>.
*
*
* @param is the underlying InputStream.
*/
public ByteCountInputStream(InputStream is) {
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmgextractor/ui/PasswordDialog.java
Expand Up @@ -70,7 +70,7 @@ private char[] getPassword() {
* Shows a dialog, modal to <code>owner</code> which requests a password from the user, halts
* execution until the password has been entered, and then returns the entered password, or
* <code>null</code> depending on whether the user clicked the "Ok" or the "Cancel" button.
*
*
* @param parentComponent this dialog's parent component.
* @param dialogTitle the title of the dialog, printed in the window header.
* @param messageLine the one line message to display above the password field, for example
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/dmgextractor/ui/PasswordPanel.java
Expand Up @@ -22,7 +22,7 @@

/**
* The UI design component for PasswordDialog.
*
*
* @author <a href="http://www.catacombae.org/" target="_top">Erik Larsson</a>
*/
class PasswordPanel extends javax.swing.JPanel {
Expand Down
2 changes: 1 addition & 1 deletion src/org/catacombae/xml/apx/APXParser.jj
Expand Up @@ -533,7 +533,7 @@ Attribute attribute() :
(
<WT_DQUOTE> // WithinTag -> Attribute
( t = <ATTR_DQUOTE_STRING> { value.add(new Attribute.StringComponent(t.image)); } |
t = <ATTR_REFERENCE> { value.add(new Attribute.ReferenceComponent(t.image)); } )*
t = <ATTR_REFERENCE> { value.add(new Attribute.ReferenceComponent(t.image)); } )*
<ATTR_DQUOTE> // Attribute -> WithinTag
)
|
Expand Down

0 comments on commit 9adc8ac

Please sign in to comment.