-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made the class final to present sub-classing and made the default con…
…structor private to present instantiation.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
author: [email protected] | ||
license: LGPL (http://www.gnu.org/copyleft/lesser.html) | ||
$Id: Utils.java,v 1.6 2004-03-31 10:57:55 anil Exp $ | ||
$Id: Utils.java,v 1.7 2004-03-31 16:00:34 anil Exp $ | ||
*/ | ||
package com.linuxense.javadbf; | ||
|
||
|
@@ -18,11 +18,13 @@ | |
/** | ||
Miscelaneous functions required by the JavaDBF package. | ||
*/ | ||
public class Utils { | ||
public final class Utils { | ||
|
||
public static final int ALIGN_LEFT = 10; | ||
public static final int ALIGN_RIGHT = 12; | ||
|
||
private Utils(){} | ||
|
||
public static int readLittleEndianInt( DataInput in) | ||
throws IOException { | ||
|
||
|