Partially addressed Reed-Solomon decoding issue for Datamatrix, but not entirely...
[zxing.git] / core / src / com / google / zxing / ResultPoint.java
index a65e0f5..15e438c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 Google Inc.
+ * Copyright 2007 ZXing authors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,12 +19,13 @@ package com.google.zxing;
 /**
  * <p>Encapsulates a point of interest in an image containing a barcode. Typically, this
  * would be the location of a finder pattern or the corner of the barcode, for example.</p>
- * 
+ *
  * @author srowen@google.com (Sean Owen)
  */
 public interface ResultPoint {
 
   float getX();
+
   float getY();
 
 }