package com.google.common.math;

import javax.annotation.Nullable;

final class MathPreconditions
{
  static int checkPositive(@Nullable String paramString, int paramInt)
  {
    if (paramInt <= 0)
      throw new IllegalArgumentException(paramString + " (" + paramInt + ") must be > 0");
    return paramInt;
  }

  static void checkRoundingUnnecessary(boolean paramBoolean)
  {
    if (!paramBoolean)
      throw new ArithmeticException("mode was UNNECESSARY, but rounding was necessary");
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.google.common.math.MathPreconditions
 * JD-Core Version:    0.6.2
 */