[Mondrian] Mondrian 3.0 is production

Will Gorman wgorman at pentaho.org
Thu Mar 27 11:31:32 EDT 2008


I've committed the changes to perforce necessary to get JPivot working
with Mondrian 3.0.1.

Will

On Thu, 2008-03-27 at 08:12 -0700, Julian Hyde wrote:
>  
> > I replaced:
> > 	
> >      String[] uniqueNameParts = Util.explode(uniqueName);
> > with
> >      List<Id.Segment> uniqueNameParts = 
> > Util.parseIdentifier(uniqueName);
> > 
> > in the JPivot MondrianModel.java code rather than just having
> > it return a 1.4 List - therefore java 1.5.
> 
> Note that you could have written
> 
>    List uniqueNameParts = Util.parseIdentifier(uniqueName);
> 
> And that would compile on 1.4 and 1.5 (albeit with warnings on 1.5). The
> designers of JDK 1.5 were careful not to use generics for overloading etc.
> so you can safely write code without generics.
> 
> That would be a better option for jpivot, because it keeps the code 1.4
> compatible.
> 
> Julian
> 
> _______________________________________________
> Mondrian mailing list
> Mondrian at pentaho.org
> http://lists.pentaho.org/mailman/listinfo/mondrian




More information about the Mondrian mailing list