[Pocketgames-devel] SF.net SVN: pocketgames: [212] libraries/cab/src/org/pocketgames/cab/ installd
Status: Beta
Brought to you by:
idominguez
|
From: <ido...@us...> - 2008-01-12 03:47:51
|
Revision: 212
http://pocketgames.svn.sourceforge.net/pocketgames/?rev=212&view=rev
Author: idominguez
Date: 2008-01-11 19:47:56 -0800 (Fri, 11 Jan 2008)
Log Message:
-----------
Indentation changes
Modified Paths:
--------------
libraries/cab/src/org/pocketgames/cab/installdata/backend/PrinterValue.java
Modified: libraries/cab/src/org/pocketgames/cab/installdata/backend/PrinterValue.java
===================================================================
--- libraries/cab/src/org/pocketgames/cab/installdata/backend/PrinterValue.java 2008-01-12 03:47:30 UTC (rev 211)
+++ libraries/cab/src/org/pocketgames/cab/installdata/backend/PrinterValue.java 2008-01-12 03:47:56 UTC (rev 212)
@@ -8,32 +8,36 @@
public static byte[] print (Value r)
{
if (r instanceof SZ)
- return printSZ ((SZ) r);
+ return printSZ ((SZ) r);
else if (r instanceof BINARY)
- return printBINARY ((BINARY) r);
+ return printBINARY ((BINARY) r);
else if (r instanceof MULTI_SZ)
- return printMULTI_SZ ((MULTI_SZ) r);
+ return printMULTI_SZ ((MULTI_SZ) r);
else
- return printDWORD ((DWORD) r);
+ return printDWORD ((DWORD) r);
}
- public static byte[] printSZ (SZ s) {
- byte[] ret = new byte[0];
- return ret;
+ public static byte[] printSZ (SZ s)
+ {
+ byte[] ret = new byte[0];
+ return ret;
}
- public static byte[] printBINARY (BINARY b) {
- byte[] ret = new byte[0];
- return ret;
+ public static byte[] printBINARY (BINARY b)
+ {
+ byte[] ret = new byte[0];
+ return ret;
}
- public static byte[] printMULTI_SZ (MULTI_SZ m) {
- byte[] ret = new byte[0];
- return ret;
+ public static byte[] printMULTI_SZ (MULTI_SZ m)
+ {
+ byte[] ret = new byte[0];
+ return ret;
}
- public static byte[] printDWORD (DWORD d) {
- byte[] ret = new byte[0];
- return ret;
+ public static byte[] printDWORD (DWORD d)
+ {
+ byte[] ret = new byte[0];
+ return ret;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|