Skip to content

Commit

Permalink
Made the class final to present sub-classing and made the default con…
Browse files Browse the repository at this point in the history
…structor private to present instantiation.
  • Loading branch information
tbzfish committed Mar 31, 2004
1 parent b0beff0 commit 06f39e5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions com/linuxense/javadbf/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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 {

Expand Down

0 comments on commit 06f39e5

Please sign in to comment.